Skip to content

Commit

Permalink
Add autotag action to keep semantic version tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbb authored Apr 20, 2022
1 parent 95a2f11 commit ac4326d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/autotag-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Create tags with only major or major.minor version
# This runs for every created release. Releases are expected to use vmajor.minor.patch as tags.

name: Autotag Release
on:
release:
types: [released]
workflow_dispatch:
permissions: read-all

jobs:
autotag_release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Get version from tag
id: tag_name
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/}
shell: bash
- name: Create and push tags
run: |
MINOR="$(echo -n ${{ steps.tag_name.outputs.current_version }} | cut -d. -f1-2)"
MAJOR="$(echo -n ${{ steps.tag_name.outputs.current_version }} | cut -d. -f1)"
git tag -f "${MINOR}"
git tag -f "${MAJOR}"
git push -f origin "${MINOR}"
git push -f origin "${MAJOR}"

0 comments on commit ac4326d

Please sign in to comment.