diff options
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 |