Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ name: Delivery
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
release:
types: [published]
workflow_dispatch:

permissions:
Expand All @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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' }}

Expand Down
4 changes: 4 additions & 0 deletions cryptify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading