-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add workflow to generate a tag when new package version is detected
Signed-off-by: Reuben Miller <[email protected]>
- Loading branch information
1 parent
edb5613
commit 03a59b4
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: autotag | ||
# | ||
# Create a git tag based on the Cargo workflow packages version if one does not already exist | ||
# The tag will trigger the release process (as it is triggered via tagging) | ||
# | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
create_tag: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Create tag if changed | ||
if: github.repository_owner == 'thin-edge' | ||
run: | | ||
VERISON=$(yq '.workspace.package.version' Cargo.toml) | ||
if [ -z "$VERISON" ]; then | ||
echo "Could not detect workspace package version (.workspace.package.version) from Cargo.toml" | ||
exit 1 | ||
fi | ||
if [ -n $(git tag -l "$VERSION") ]; then | ||
echo "Skipping as tag already exists" | ||
exit 0 | ||
fi | ||
echo "Creating tag: $VERSION" | ||
git tag -a "$VERSION" -m "Release $VERSION" | ||
git push origin "$VERSION" |