diff options
author | anzz1 <anzz1@live.com> | 2023-03-21 23:49:24 +0200 |
---|---|---|
committer | anzz1 <anzz1@live.com> | 2023-03-22 00:01:08 +0200 |
commit | e6c9e0986c79ba1cc8848879b2fcce979f9b4672 (patch) | |
tree | 35ad3bd4c54acd7979b7feebb7d29f42dd4905fa | |
parent | 01a297b09932e29f3319d6588977c32a926c7907 (diff) |
Fix bin dir for win ci
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3030f4f..5882fc7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -119,7 +119,7 @@ jobs: id: pack_artifacts if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }} run: | - 7z a llama-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-x64.zip .\build\Release\* + 7z a llama-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-x64.zip .\build\bin\Release\* - name: Create release id: create_release |