diff options
| author | Dan Engelbrecht <[email protected]> | 2022-05-26 00:22:34 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-06-02 00:35:51 +0200 |
| commit | fabd658afde391f2cac5795257635cb69807aae5 (patch) | |
| tree | 2b31de7271bb3356f773495153bbfed3b1083856 /.github/workflows | |
| parent | clear xmake cache (diff) | |
| download | zen-fabd658afde391f2cac5795257635cb69807aae5.tar.xz zen-fabd658afde391f2cac5795257635cb69807aae5.zip | |
clear xmake cache take 2
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/create_release.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index dda893025..9ce08da26 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -22,9 +22,6 @@ jobs: with: xmake-version: 2.6.4 - - name: Clear xmake Cache - run: xmake f -c - - name: Installing vcpkg run: | git clone -b ${{env.VCPKG_VERSION}} --single-branch https://github.com/Microsoft/vcpkg.git .vcpkg @@ -40,6 +37,9 @@ jobs: ${{ github.workspace }}\.vcpkg\installed key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v5 + - name: Clear xmake Cache + run: xmake f -c -y + - name: Bundle run: | xmake bundle -v -y @@ -72,9 +72,6 @@ jobs: with: xmake-version: 2.6.4 - - name: Clear xmake Cache - run: xmake f -c - - name: Installing vcpkg run: | git clone -b ${{env.VCPKG_VERSION}} --single-branch https://github.com/Microsoft/vcpkg.git .vcpkg @@ -89,6 +86,9 @@ jobs: ${{ github.workspace }}/.vcpkg/installed key: ${{ runner.os }}-release-${{env.VCPKG_VERSION}}-${{ hashFiles('xmake.lua') }}-x64-v5 + - name: Clear xmake Cache + run: xmake f -c -y + - name: Bundle run: | xmake bundle -v -y |