Skip to content

Commit

Permalink
Fix publish workflow job ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Tranquility2 committed Apr 20, 2024
1 parent 26473ff commit 55d93de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
- name: Check Version
id: get_version
run: |
get_version=$(git describe --tags --abbrev=0)
echo "Got Version: $get_version"
echo "get_version=$get_version" >> $GITHUB_OUTPUT
version=$(git describe --tags --abbrev=0)
echo "Got Version: $version"
echo "version=$version" >> $GITHUB_OUTPUT
- name: Download Binary Artifact
uses: actions/download-artifact@v4
Expand All @@ -57,9 +57,9 @@ jobs:
id: create_release
uses: softprops/action-gh-release@v2
with:
name: ${{ steps.bump_version.outputs.get_version }}
tag_name: ${{ steps.bump_version.outputs.get_version }}
body: New Release ${{ steps.bump_version.outputs.get_version }}
name: ${{ steps.get_version.outputs.version }}
tag_name: ${{ steps.get_version.outputs.version }}
body: New Release ${{ steps.get_version.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
files: |
artifact/xls_updater
Expand Down

0 comments on commit 55d93de

Please sign in to comment.