Skip to content

Commit

Permalink
Fix current version checking function
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <[email protected]>
  • Loading branch information
t3chguy committed Nov 26, 2024
1 parent d2eeb3d commit 4259e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Check current version on deployment
id: current_version
run: |
echo "version=$(curl -s https://$SITE/version)" >> $GITHUB_OUTPUT
echo "version=v$(curl -s https://$SITE/version)" >> $GITHUB_OUTPUT
# The current version bundle melding dance is skipped if the version we're deploying is the same
# as then we're just doing a re-deploy of the same version with potentially different configs.
Expand All @@ -50,7 +50,7 @@ jobs:
if: steps.current_version.outputs.version != github.ref_name
uses: ./.github/actions/download-verify-element-tarball
with:
tag: steps.current_version.outputs.version
tag: ${{ steps.current_version.outputs.version }}
out-file-path: _current_version

- name: Download target version
Expand Down

0 comments on commit 4259e96

Please sign in to comment.