Skip to content

Commit

Permalink
Fix tag calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Feb 22, 2024
1 parent 5bbc0ef commit 15f2450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ jobs:
run: |
# We want to always use the long tag (x.y.z-N) in Asana communication
if [[ ${prerelase} == "true" ]]; then
echo "TAG=$PROMOTED_TAG" >> $GITHUB_ENV
else
echo "TAG=$TAG" >> $GITHUB_ENV
else
echo "TAG=$PROMOTED_TAG" >> $GITHUB_ENV
fi
echo "WORKFLOW_URL=https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> $GITHUB_ENV
echo "DMG_URL=${{ vars.TEST_DMG_URL_ROOT }}duckduckgo-${TAG//-/.}.dmg" >> $GITHUB_ENV
Expand Down

0 comments on commit 15f2450

Please sign in to comment.