Skip to content

Commit

Permalink
fix: tag release step in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon committed Jan 29, 2024
1 parent 60064c6 commit 21f5b2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
tar -C `dirname $bin` -czvf dist/$filename.tar.gz --transform 's,^.*/,,g' `basename $bin`
done
tar -czvf dist/helix-gpt-$GITHUB_REF_NAME-source.tar.gz -C $source .
tar -czvf dist/helix-gpt-${{ github.event.input.tag }}-source.tar.gz -C $source .
mv dist $source/
- name: Upload binaries to release
Expand All @@ -107,7 +107,7 @@ jobs:
repo_token: ${{ secrets.GH_TOKEN }}
file: dist/*
file_glob: true
tag: ${{ github.ref_name }}
tag: ${{ github.event.input.tag }}
overwrite: true

- name: Upload binaries as artifact
Expand Down

0 comments on commit 21f5b2f

Please sign in to comment.