diff options
Diffstat (limited to '.github/workflows/create_release.yml')
| -rw-r--r-- | .github/workflows/create_release.yml | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 329dbc017..a6412fd73 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -33,7 +33,13 @@ jobs: with: path: | ${{ github.workspace }}\.vcpkg\installed - key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v5 + key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v8 + + - name: Config + run: | + xmake config -v -y -m release + env: + VCPKG_ROOT: ${{ github.workspace }}/.vcpkg - name: Bundle run: | @@ -79,7 +85,13 @@ jobs: with: path: | ${{ github.workspace }}/.vcpkg/installed - key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v5 + key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v8 + + - name: Config + run: | + xmake config -v -y -m release + env: + VCPKG_ROOT: ${{ github.workspace }}/.vcpkg - name: Bundle run: | @@ -125,7 +137,13 @@ jobs: with: path: | ${{ github.workspace }}/.vcpkg/installed - key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v5 + key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v8 + + - name: Config + run: | + xmake config -v -y -m release + env: + VCPKG_ROOT: ${{ github.workspace }}/.vcpkg - name: Bundle run: | |