Skip to content

Commit

Permalink
Update build-win64.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gmh5225 committed Oct 30, 2023
1 parent 6e41bf4 commit b28582d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ jobs:

- name: Build
run: |
cmake -Bbuild -Ax64 -TLLVM-MSVC_v143 -DENABLE_TEST=1
cmake --build build --config Release
cmake -Bbuild_x64 -Ax64 -TLLVM-MSVC_v143 -DENABLE_TEST=1
cmake --build build_x64 --config Release
- uses: actions/upload-artifact@v2
with:
name: ${{ github.event.repository.name }}-${{ github.sha }}
path: |
build/Release
build_x64/Release
- name: Compress artifacts
uses: vimtor/action-zip@26a249fb00d43ca98dad77a4b3838025fc226aa1 # v1.1
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
files: |
build/Release/*.*
build_x64/Release/*.*
dest: ${{ github.event.repository.name }}-${{ github.sha }}.zip

- name: Release
Expand Down

0 comments on commit b28582d

Please sign in to comment.