Skip to content

Commit

Permalink
Auto-create tags based on cmake project version.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Aug 6, 2023
1 parent a239a0c commit 024eebe
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/create-tag.yaml
@@ -0,0 +1,33 @@
on:
workflow_run:
workflows: [Run tests]
types: [completed]
branches: [master]

name: Tag project version

jobs:
tag:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3

- name: Get current version
id: current
run: |
current=$(cat CMakeLists.txt | grep ' *VERSION' | sed 's/.*VERSION //g')
echo "Current version is ${current}"
echo "version=v${current}" >> $GITHUB_OUTPUT
- name: Get latest version
id: latest
uses: actions-ecosystem/action-get-latest-tag@v1
with:
semver_only: true

- name: Tag version if new
if: ${{ steps.current.outputs.version != steps.latest.outputs.tag }}
uses: actions-ecosystem/action-push-tag@v1
with:
tag: ${{ steps.current.outputs.version }}

0 comments on commit 024eebe

Please sign in to comment.