Skip to content

Commit

Permalink
Merge pull request #518 from OdyseeTeam/feature-arfleet
Browse files Browse the repository at this point in the history
Fix GA workflow version retrieval
  • Loading branch information
anbsky authored Aug 22, 2024
2 parents f9dcad6 + ae3211b commit 53864c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ jobs:
- run: git branch

- name: Retrieve release details
id: release
id: release_details
run: |
echo "APP_NAME=$(git describe --tags|sed -e 's/\-v.*//')" >> $GITHUB_OUTPUT
echo "APP_VERSION=$(git describe --tags|sed 's/api-v\([0-9.]*\)-.*/\1/')" >> $GITHUB_OUTPUT
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
- name: Release details
run: |
Expand Down

0 comments on commit 53864c6

Please sign in to comment.