Skip to content

Commit 32099fe

Browse files
committed
fix: include wincred hash in checksums
Signed-off-by: Donnie Adams <[email protected]>
1 parent 972e97c commit 32099fe

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,16 @@ jobs:
112112
- name: Download all artifacts
113113
uses: actions/download-artifact@v4
114114
- run: ls -lR
115+
- run: |
116+
pushd ./gptscript-credential-helpers-windows
117+
sha256sum -b gptscript-credential-wincred.exe >> ./checksums.txt
118+
popd
115119
- name: Create Release
116120
uses: ncipollo/release-action@v1
117121
with:
118122
allowUpdates: true
119123
artifactErrorsFailBuild: true
120-
artifacts: |
121-
./*
124+
artifacts: "./gptscript-credential-helpers/*,./gptscript-credential-helpers-windows/*"
122125
makeLatest: ${{ !contains(github.ref_name, '-rc') }}
123126
generateReleaseNotes: true
124127
prerelease: ${{ contains(github.ref_name, '-rc') }}

0 commit comments

Comments
 (0)