Skip to content

Commit

Permalink
Merge pull request #3 from thedadams/checksums-without-star
Browse files Browse the repository at this point in the history
chore: generate checksums without * prepended
  • Loading branch information
thedadams authored Aug 13, 2024
2 parents 6036cb1 + f362b38 commit 972e97c
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 972e97c

Please sign in to comment.