Skip to content

Commit

Permalink
Update release step to use action supporting "make_latest"; generate …
Browse files Browse the repository at this point in the history
…full release as latest
  • Loading branch information
Mitch Alessio committed Jan 17, 2024
1 parent 0b87229 commit 2b0b59c
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,14 +204,11 @@ jobs:
- name: Release
# Naively, only create GitHub Release object for purported non-prerelease versions
if: ${{ !contains(inputs.releaseVersion, '-') }}
uses: softprops/action-gh-release@v1
uses: ncipollo/release-action@v1
with:
prerelease: true
generate_release_notes: true
fail_on_unmatched_files: true
tag_name: "${{ inputs.releaseVersion }}"
makeLatest: true
generateReleaseNotes: true
artifactErrorsFailBuild: true
tag: "${{ inputs.releaseVersion }}"
name: "v${{ inputs.releaseVersion }}"
files: |
*.csv
*.json
*.xlsx
artifacts: "*.csv,*.json,*.xlsx"

0 comments on commit 2b0b59c

Please sign in to comment.