Skip to content

Commit

Permalink
remove tag from release action since it should exist
Browse files Browse the repository at this point in the history
  • Loading branch information
glennmoy committed Oct 24, 2023
1 parent 5a30daa commit e67d4b1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/Pre_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,10 @@ jobs:
msg="Update Artifacts.toml to use ${{ steps.project_toml.outputs.version }} assets"
git checkout --detach
git commit -m "$msg" -- Artifacts.toml
echo "sha=$(git rev-parse HEAD)" | tee -a "$GITHUB_OUTPUT"
# Push Tag
tag=${{ steps.project_toml.outputs.tag }}
git tag $tag $(git rev-parse HEAD)
git tag $tag
git push origin $tag
- name: Publish Pre-Release
uses: ncipollo/release-action@v1
Expand All @@ -93,6 +92,5 @@ jobs:
with:
prerelease: true
tag: ${{ steps.project_toml.outputs.tag }}
commit: ${{ steps.commit.outputs.sha }}
artifacts: ${{ env.tarballs_dir }}/*.tar.gz
generateReleaseNotes: true

0 comments on commit e67d4b1

Please sign in to comment.