From 736c83658272bf80c55fe10676cded99afa55e9c Mon Sep 17 00:00:00 2001 From: Steven Yi Date: Thu, 11 Jul 2024 15:43:48 -0400 Subject: [PATCH] chore: disable deploy to arweave for staging --- .github/workflows/build_and_test.yml | 31 ---------------------------- 1 file changed, 31 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 3c20cc5..2f1e656 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -63,34 +63,3 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: dist - - deploy-to-arweave: - runs-on: ubuntu-latest - needs: build - environment: staging - if: ${{ github.ref == 'refs/heads/develop' }} - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version-file: '.nvmrc' - cache: 'yarn' - - - name: Install, Build, and Deploy 🔧 - run: | - yarn install --frozen-lockfile - yarn deploy - env: - # FOR BUILD - VITE_NODE_ENV: develop - VITE_SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - VITE_SENTRY_RELEASE: ${{ github.sha }} - VITE_SENTRY_ORG: ${{ secrets.SENTRY_ORG }} - VITE_SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} - VITE_SENTRY_DSN_PUBLIC_KEY: ${{ secrets.SENTRY_DSN_PUBLIC_KEY }} - VITE_SENTRY_DSN_PROJECT_URI: ${{ secrets.SENTRY_DSN_PROJECT_URI }} - VITE_SENTRY_DSN_PROJECT_ID: ${{ secrets.SENTRY_DSN_PROJECT_ID }} - VITE_GITHUB_HASH: ${{ github.sha }} - DEPLOY_ANT_PROCESS_ID: ${{ secrets.DEPLOY_ANT_PROCESS_ID }} - DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}