diff --git a/.github/workflows/delivery.yml b/.github/workflows/delivery.yml index b732050..4d0f74b 100644 --- a/.github/workflows/delivery.yml +++ b/.github/workflows/delivery.yml @@ -3,10 +3,9 @@ name: Delivery on: push: branches: [main] + tags: ['v*'] pull_request: branches: [main] - release: - types: [published] workflow_dispatch: permissions: @@ -26,7 +25,7 @@ jobs: - name: Select build profile id: config run: | - if [ "${{ github.event_name }}" = "release" ]; then + if [[ "${{ github.ref }}" == refs/tags/v* ]]; then echo "profile=release" >> "$GITHUB_OUTPUT" else echo "profile=edge" >> "$GITHUB_OUTPUT" @@ -82,7 +81,7 @@ jobs: - name: Select build profile id: config run: | - if [ "${{ github.event_name }}" = "release" ]; then + if [[ "${{ github.ref }}" == refs/tags/v* ]]; then echo "profile=release" >> "$GITHUB_OUTPUT" else echo "profile=edge" >> "$GITHUB_OUTPUT" @@ -124,7 +123,7 @@ jobs: tags: | type=semver,pattern={{version}},event=tag type=semver,pattern={{major}}.{{minor}},event=tag - type=edge,enable=${{ github.event_name != 'release' }} + type=edge,enable=${{ !startsWith(github.ref, 'refs/tags/') }} type=ref,event=pr type=ref,event=branch,enable=${{ github.event_name == 'workflow_dispatch' }} diff --git a/cryptify/CHANGELOG.md b/cryptify/CHANGELOG.md index 9b39e43..d6d2bfd 100644 --- a/cryptify/CHANGELOG.md +++ b/cryptify/CHANGELOG.md @@ -13,3 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - add package description to Cargo.toml - update Rust edition from 2018 to 2021 + +## [0.1.0] - 2026-03-26 + +Initial release.