Skip to content

Commit

Permalink
Fix app version in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
anbsky committed Nov 21, 2024
1 parent 95dc63b commit a5a9ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: release_details
run: |
echo "APP_NAME=$(git describe --tags|sed -e 's/\-v.*//')" >> $GITHUB_ENV
echo "APP_VERSION=$(git describe --tags --match 'api-v*'|sed 's/api-v\([0-9.]*\)/\1/')" >> $GITHUB_ENV
echo "APP_VERSION=$(git describe --tags --match '*-v*'|sed 's/.*v\([0-9.]*\).*/\1/')" >> $GITHUB_ENV
- name: Release details
run: |
Expand Down

0 comments on commit a5a9ee0

Please sign in to comment.