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 043c536 commit 13e4eb1Copy full SHA for 13e4eb1
.github/workflows/build.yml
@@ -34,14 +34,16 @@ jobs:
34
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=i686-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=i686-w64-mingw32-g++ -DOFFICIAL_BUILD=ON
35
36
- name: Build
37
- run: cmake --build build --parallel
+ run: |
38
+ cmake --build build --parallel
39
+ sha1sum build/bin/cod4x_*.dll > hashes.txt
40
41
- name: Publish release
42
if: startsWith(github.ref, 'refs/tags/')
43
uses: ncipollo/release-action@v1
44
with:
45
allowUpdates: true
46
tag: ${{ github.ref_name }}
- artifacts: "build/bin/cod4x_*.dll"
47
+ artifacts: "build/bin/cod4x_*.dll,hashes.txt"
48
token: ${{ secrets.GITHUB_TOKEN }}
49
0 commit comments