Skip to content

Commit

Permalink
fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément committed Sep 24, 2024
1 parent 863cf34 commit b237040
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
# tags in the form A.B.C where A B and C are only numbers. It won't trigger for pre-release tags.
- '[0-9]+.[0-9]+.[0-9]+'

permissions:
contents: write

name: Create Release

jobs:
Expand All @@ -15,7 +18,7 @@ jobs:
- name: Get version from tag
id: tag_name
run: |
echo "current_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
echo "current_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
shell: bash
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit b237040

Please sign in to comment.