Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/actions/publish-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,11 @@ runs:
GH_TOKEN: ${{ github.token }}

# Conditionally make a release if a tag was made.
- uses: softprops/action-gh-release@v1
if: steps.tag.outputs.push_tag == 'yes'
with:
files: "dist/*"
generate_release_notes: true
tag_name: v${{ steps.tag.outputs.version }}
- if: steps.tag.outputs.push_tag == 'yes'
shell: bash
run: gh release create --generate-notes v${{ steps.tag.outputs.version }} dist/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Generate attestations for release artifacts
- name: Generate artifact attestation
Expand Down