From f81e0907fcbed54323995acbb9c13f2c151f6db7 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Wed, 31 Jul 2024 18:42:34 +0200 Subject: [PATCH] fix: use correct branch name --- .github/workflows/deploy-storacha.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-storacha.yml b/.github/workflows/deploy-storacha.yml index cbd2f09..0d7b6f7 100644 --- a/.github/workflows/deploy-storacha.yml +++ b/.github/workflows/deploy-storacha.yml @@ -2,7 +2,7 @@ name: Deploy on: push: branches: - - feat/storacha-theme + - feat/storacha-skin jobs: release: name: Release @@ -12,7 +12,7 @@ jobs: url: https://console.storacha.network steps: - uses: actions/checkout@v3 - ref: feat/storacha-theme + ref: feat/storacha-skin - uses: ./.github/actions/pnpm - name: create .env from .env.tpl setting env variables used by `pnpm run pages:build` run: | @@ -41,7 +41,7 @@ jobs: uses: mathiasvr/command-output@v1.1.0 id: cloudflare with: - run: npx wrangler pages deploy --project-name console-storacha --branch "feat/storacha-theme" --commit-hash "$GITHUB_SHA" .vercel/output/static + run: npx wrangler pages deploy --project-name console-storacha --branch "feat/storacha-skin" --commit-hash "$GITHUB_SHA" .vercel/output/static env: CLOUDFLARE_API_TOKEN: ${{ secrets.CF_TOKEN }} CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}