From 7d5689eb1c09ac599731b7a108c691c76350b915 Mon Sep 17 00:00:00 2001 From: Tom French Date: Wed, 11 Sep 2024 10:59:32 +0100 Subject: [PATCH 1/2] chore(ci): fix bb publishing --- .github/workflows/publish-bb.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-bb.yml b/.github/workflows/publish-bb.yml index fc5e0acdce0..fcc2bbeba22 100644 --- a/.github/workflows/publish-bb.yml +++ b/.github/workflows/publish-bb.yml @@ -59,7 +59,7 @@ jobs: run: tar -cvzf barretenberg-x86_64-linux-gnu.tar.gz bb - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: release-linux path: | @@ -128,7 +128,7 @@ jobs: # NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: release-wasm path: | @@ -163,7 +163,7 @@ jobs: 7z a -ttar -so -an ./dist/* | 7z a -si ./barretenberg-x86_64-apple-darwin.tar.gz - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: barretenberg-x86_64-apple-darwin path: ./barretenberg/cpp/build/bin/barretenberg-x86_64-apple-darwin.tar.gz @@ -195,7 +195,7 @@ jobs: 7z a -ttar -so -an ./dist/* | 7z a -si ./barretenberg-aarch64-apple-darwin.tar.gz - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: barretenberg-aarch64-apple-darwin path: ./barretenberg/cpp/build/bin/barretenberg-aarch64-apple-darwin.tar.gz @@ -243,22 +243,22 @@ jobs: runs-on: ubuntu-latest steps: - name: Download files from Linux Runner - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: release-linux - name: Download files for WASM - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: release-wasm - name: Download files from x86_64 Mac Runner - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: barretenberg-x86_64-apple-darwin - name: Download files from aarch64 Mac Runner - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: barretenberg-aarch64-apple-darwin From bb2abe9c72b0d3a9c2821d31d3daac27a97bd050 Mon Sep 17 00:00:00 2001 From: Tom French Date: Wed, 11 Sep 2024 11:10:20 +0100 Subject: [PATCH 2/2] . --- .github/workflows/publish-bb.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish-bb.yml b/.github/workflows/publish-bb.yml index fcc2bbeba22..4b859087c54 100644 --- a/.github/workflows/publish-bb.yml +++ b/.github/workflows/publish-bb.yml @@ -17,6 +17,7 @@ on: permissions: # Necessary to upload new release artifacts contents: write + issues: write jobs: build-x86_64-linux-gnu: