From 4e7bea56d1751d381abc08aba0a9652989cd708f Mon Sep 17 00:00:00 2001 From: serokell-bot Date: Tue, 15 Oct 2024 13:14:15 +0700 Subject: [PATCH] [Chore] Update bottle workflow --- .github/workflows/build-bottles.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-bottles.yml b/.github/workflows/build-bottles.yml index 46d774227..bad100dd6 100644 --- a/.github/workflows/build-bottles.yml +++ b/.github/workflows/build-bottles.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ { id: macos-12, name: "monterey" } ] + os: [ { id: macos-13, name: "ventura" } ] # we don't bottle meta-formulas that contain only services formula: [tezos-smart-rollup-wasm-debugger, tezos-smart-rollup-node, tezos-dac-client, tezos-dac-node, tezos-dal-node, tezos-signer, tezos-codec, tezos-client, tezos-admin-client, tezos-node, tezos-accuser-PsParisC, tezos-baker-PsParisC, tezos-accuser-PtParisB, tezos-baker-PtParisB, tezos-accuser-Proxford, tezos-baker-Proxford] steps: @@ -54,7 +54,7 @@ jobs: if: steps.check-built.outcome == 'failure' uses: actions/upload-artifact@v4 with: - name: homebrew-bottles-${{ matrix.os }} + name: ${{ matrix.formula }}-${{ github.run_id }} path: '*.bottle.*' - name: Attach the bottle to the release @@ -64,7 +64,7 @@ jobs: run: gh release upload "${{ env.tag }}" *.bottle.* sync-hashes: - runs-on: macos-12 + runs-on: macos-13 needs: build-bottles steps: - name: Checkout @@ -86,12 +86,12 @@ jobs: # It's possible we have had to rerun the building workflow, skipping some jobs and # erasing the previously built bottles, so we use the release to download them all - - name: Download Monterey bottles from the release + - name: Download Ventura bottles from the release env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - run: gh release download "${{ github.ref_name }}" -p "*.monterey.bottle.tar.gz" -D "./Monterey" + run: gh release download "${{ github.ref_name }}" -p "*.ventura.bottle.tar.gz" -D "./Ventura" - name: Add bottle hashes to formulae env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - run: ./scripts/sync-bottle-hashes.sh "${{ github.ref_name }}" "Monterey" + run: ./scripts/sync-bottle-hashes.sh "${{ github.ref_name }}" "Ventura"