Merge branch 'patch/v0.8.1'
This commit is contained in:
commit
cf89a4bd6d
5 changed files with 14 additions and 7 deletions
2
.github/workflows/tag.yml
vendored
2
.github/workflows/tag.yml
vendored
|
|
@ -34,7 +34,7 @@ jobs:
|
|||
run: |
|
||||
earthly account login --token ${{ secrets.EARTHLY_SAT_TOKEN }} >> /dev/null
|
||||
earthly org s blue-build
|
||||
earthly sat s blue-build
|
||||
earthly sat s blue-build-tag
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
|
|
|
|||
|
|
@ -2,6 +2,12 @@
|
|||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [0.8.1] - 2024-02-26
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- COPY yq into final image for modules
|
||||
|
||||
## [0.8.0] - 2024-02-25
|
||||
|
||||
### Bug Fixes
|
||||
|
|
@ -40,6 +46,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Add trace log for github cosign verify
|
||||
- Fix integration-tests for forks
|
||||
- Update default module source (#76)
|
||||
- Release blue-build version 0.8.0
|
||||
|
||||
### Refactor
|
||||
|
||||
|
|
|
|||
8
Cargo.lock
generated
8
Cargo.lock
generated
|
|
@ -278,7 +278,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"blue-build-recipe",
|
||||
|
|
@ -315,7 +315,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-recipe"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"blue-build-utils",
|
||||
|
|
@ -331,7 +331,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-template"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
dependencies = [
|
||||
"askama",
|
||||
"blue-build-recipe",
|
||||
|
|
@ -346,7 +346,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "blue-build-utils"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"directories",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
members = [ "utils", "recipe","template"]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
description = "A CLI tool built for creating Containerfile templates based on the Ublue Community Project"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/blue-build/cli"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -euo pipefail
|
||||
|
||||
VERSION=v0.8.0
|
||||
VERSION=v0.8.1
|
||||
|
||||
# We use sudo for podman so that we can copy directly into /usr/local/bin
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue