Skip to content

feat: use shared autorelease workflow #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 5, 2024
Merged
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
55 changes: 14 additions & 41 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,17 @@
name: Tag New Release
name: Create Rust Release

on:
push:
branches:
- main
paths:
- 'Cargo.toml'

permissions:
contents: write
id-token: write
push:
branches:
- main
paths:
- 'Cargo.toml'

permissions: # these permissions are required for the actions to run
contents: write

jobs:
verify-new-release-needed:
name: Verify new release needed
runs-on: ubuntu-latest
environment: dev
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: "true"
fetch-depth: "0"
- name: Verify new release needed
env:
GH_TOKEN: ${{ github.token }}
run: |
echo "Checking if a new release is needed"
# get current version from cargo
CARGO_VER="v$(cargo metadata --format-version=1 --no-deps | jq '.packages[] | select(.name == "zenith-builder-example") | .version' -r)"
echo "$CARGO_VER"
# get latest version from git tags
GIT_VER=$(git describe --tags $(git rev-list --tags --max-count=1))
echo "$GIT_VER"
if [ "$CARGO_VER" == "$GIT_VER" ]; then
echo "# No new release needed" >> $GITHUB_STEP_SUMMARY
exit 0
else
echo "New release needed"
gh release create "$CARGO_VER" -t "$CARGO_VER" --generate-notes
## Add the release information to the github actions summary
echo "# New Release Created" >> $GITHUB_STEP_SUMMARY
echo "Tag: $CARGO_VER" >> $GITHUB_STEP_SUMMARY
fi
auto-release:
uses: init4tech/actions/.github/workflows/auto-release-rust.yml@main
with:
binary-name: 'zenith-builder-example'