We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 972e97c commit 32099feCopy full SHA for 32099fe
.github/workflows/build.yml
@@ -112,13 +112,16 @@ jobs:
112
- name: Download all artifacts
113
uses: actions/download-artifact@v4
114
- run: ls -lR
115
+ - run: |
116
+ pushd ./gptscript-credential-helpers-windows
117
+ sha256sum -b gptscript-credential-wincred.exe >> ./checksums.txt
118
+ popd
119
- name: Create Release
120
uses: ncipollo/release-action@v1
121
with:
122
allowUpdates: true
123
artifactErrorsFailBuild: true
- artifacts: |
- ./*
124
+ artifacts: "./gptscript-credential-helpers/*,./gptscript-credential-helpers-windows/*"
125
makeLatest: ${{ !contains(github.ref_name, '-rc') }}
126
generateReleaseNotes: true
127
prerelease: ${{ contains(github.ref_name, '-rc') }}
0 commit comments