From 95c3692bcb99123e626912fb5b41a523b5209d45 Mon Sep 17 00:00:00 2001 From: hueso Date: Thu, 5 Mar 2026 22:19:27 -0300 Subject: [PATCH] =?UTF-8?q?pi=C3=B1ata=20soft=20fail?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ipfs-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ipfs-release.yml b/.github/workflows/ipfs-release.yml index f9b9ce6..2aec56e 100644 --- a/.github/workflows/ipfs-release.yml +++ b/.github/workflows/ipfs-release.yml @@ -25,16 +25,19 @@ jobs: run: npm run build - name: Install Pinata CLI + if: secrets.PINATA_JWT != '' shell: bash run: curl -fsSL https://cli.pinata.cloud/install | bash - name: Authenticate Pinata CLI (write JWT to file) + if: secrets.PINATA_JWT != '' env: PINATA_JWT: ${{ secrets.PINATA_JWT }} run: | echo -n "$PINATA_JWT" > ~/.pinata-files-cli - name: Upload build output to Pinata + if: secrets.PINATA_JWT != '' id: pinata_upload run: | export PATH="$HOME/.local/share/pinata/:$PATH"