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 3e193ceCopy full SHA for 3e193ce
.github/workflows/build.yml
@@ -34,14 +34,17 @@ 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
+ ln -s build/bin/cod4x_*.dll .
40
+ sha1sum cod4x_*.dll > hashes.txt
41
42
- name: Publish release
43
if: startsWith(github.ref, 'refs/tags/')
44
uses: ncipollo/release-action@v1
45
with:
46
allowUpdates: true
47
tag: ${{ github.ref_name }}
- artifacts: "build/bin/cod4x_*.dll"
48
+ artifacts: "build/bin/cod4x_*.dll,hashes.txt"
49
token: ${{ secrets.GITHUB_TOKEN }}
50
0 commit comments