Skip to content

Commit

Permalink
chore: generate checksums without * prepended
Browse files Browse the repository at this point in the history
The current release process will generate the checksums with * prepended
to the binary names. This change will hopefully not do that.
  • Loading branch information
thedadams committed Aug 13, 2024
1 parent 6036cb1 commit f362b38
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,14 @@ jobs:
uses: actions/download-artifact@v4
- run: ls -lR
- name: Create Release
uses: softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87
uses: ncipollo/release-action@v1
with:
draft: true
files: gptscript-credential-helpers*/*
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: |
./*
makeLatest: ${{ !contains(github.ref_name, '-rc') }}
generateReleaseNotes: true
prerelease: ${{ contains(github.ref_name, '-rc') }}
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f362b38

Please sign in to comment.