Merge pull request #3060 from Bravo555/chore/codecov-range #217
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
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 | |
if: github.repository_owner == 'thin-edge' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{secrets.ACTIONS_PAT}} | |
- name: Create tag if changed | |
run: | | |
VERSION=$(yq '.workspace.package.version' Cargo.toml) | |
if [ -z "$VERSION" ]; 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 | |
git config --global user.email "[email protected]" | |
git config --global user.name "Versioneer" | |
echo "Creating tag: $VERSION" | |
git tag -a "$VERSION" -m "Release $VERSION" | |
git push origin "$VERSION" |