diff options
| author | Dan Engelbrecht <[email protected]> | 2022-08-25 22:00:32 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-08-25 13:00:32 -0700 |
| commit | 0f971f4e13c2d1e21b7ff0fa0d3378521e3ec3ab (patch) | |
| tree | d8d2eddec9cc02b2c4fccc4c431004e3053a3f8a /.github/workflows/create_release.yml | |
| parent | re-enable MacOS build (#144) (diff) | |
| download | zen-0f971f4e13c2d1e21b7ff0fa0d3378521e3ec3ab.tar.xz zen-0f971f4e13c2d1e21b7ff0fa0d3378521e3ec3ab.zip | |
Build script cleanup (#150)v0.1.4-pre23v0.1.4-pre20
* always do 'config' to avoid user input problems in CI
* always bundle on validate release, remove separate build release
* bump vcpkg cache
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: | |