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: |
|
run: |
|
||||||
earthly account login --token ${{ secrets.EARTHLY_SAT_TOKEN }} >> /dev/null
|
earthly account login --token ${{ secrets.EARTHLY_SAT_TOKEN }} >> /dev/null
|
||||||
earthly org s blue-build
|
earthly org s blue-build
|
||||||
earthly sat s blue-build
|
earthly sat s blue-build-tag
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
## [0.8.0] - 2024-02-25
|
||||||
|
|
||||||
### Bug Fixes
|
### 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
|
- Add trace log for github cosign verify
|
||||||
- Fix integration-tests for forks
|
- Fix integration-tests for forks
|
||||||
- Update default module source (#76)
|
- Update default module source (#76)
|
||||||
|
- Release blue-build version 0.8.0
|
||||||
|
|
||||||
### Refactor
|
### Refactor
|
||||||
|
|
||||||
|
|
|
||||||
8
Cargo.lock
generated
8
Cargo.lock
generated
|
|
@ -278,7 +278,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build"
|
name = "blue-build"
|
||||||
version = "0.8.0"
|
version = "0.8.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"blue-build-recipe",
|
"blue-build-recipe",
|
||||||
|
|
@ -315,7 +315,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build-recipe"
|
name = "blue-build-recipe"
|
||||||
version = "0.8.0"
|
version = "0.8.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"blue-build-utils",
|
"blue-build-utils",
|
||||||
|
|
@ -331,7 +331,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build-template"
|
name = "blue-build-template"
|
||||||
version = "0.8.0"
|
version = "0.8.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"askama",
|
"askama",
|
||||||
"blue-build-recipe",
|
"blue-build-recipe",
|
||||||
|
|
@ -346,7 +346,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blue-build-utils"
|
name = "blue-build-utils"
|
||||||
version = "0.8.0"
|
version = "0.8.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"directories",
|
"directories",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
members = [ "utils", "recipe","template"]
|
members = [ "utils", "recipe","template"]
|
||||||
|
|
||||||
[workspace.package]
|
[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"
|
description = "A CLI tool built for creating Containerfile templates based on the Ublue Community Project"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/blue-build/cli"
|
repository = "https://github.com/blue-build/cli"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -euo pipefail
|
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
|
# 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