From bad20f65a572bff30a5d64513618889af925e615 Mon Sep 17 00:00:00 2001 From: Adrienne Rio Date: Thu, 3 Oct 2024 11:10:24 +0800 Subject: [PATCH] chore: removed unrelated changes to workflow --- .github/workflows/release_production.yml | 2 -- .github/workflows/release_staging.yml | 1 - .github/workflows/test.yml | 4 ---- 3 files changed, 7 deletions(-) diff --git a/.github/workflows/release_production.yml b/.github/workflows/release_production.yml index 0f12238eff5..6cee8bd61a2 100644 --- a/.github/workflows/release_production.yml +++ b/.github/workflows/release_production.yml @@ -8,7 +8,6 @@ jobs: name: Build and Test environment: Production runs-on: ubuntu-latest - environment: Production env: RELEASE_TYPE: Production steps: @@ -39,7 +38,6 @@ jobs: path: dist publish_cloudflare_production: name: Publish to Cloudflare Production - environment: Production runs-on: ubuntu-latest env: RELEASE_TYPE: Production diff --git a/.github/workflows/release_staging.yml b/.github/workflows/release_staging.yml index e7b4853b510..bc040e25c1e 100644 --- a/.github/workflows/release_staging.yml +++ b/.github/workflows/release_staging.yml @@ -41,7 +41,6 @@ jobs: path: dist publish_cloudflare_staging: name: Publish to Cloudflare Pages Staging - environment: Staging runs-on: ubuntu-latest needs: [build_and_test] steps: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a778abb2ef..c2d8028d6c7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,6 @@ jobs: build_and_test: name: Build and Test runs-on: ubuntu-latest - environment: Production steps: - name: Checkout uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 @@ -21,8 +20,5 @@ jobs: uses: "./.github/actions/build" with: target: production - RUDDERSTACK_KEY: ${{ vars.RUDDERSTACK_KEY }} - GROWTHBOOK_DECRYPTION_KEY: ${{ secrets.GROWTHBOOK_DECRYPTION_KEY }} - GROWTHBOOK_CLIENT_KEY: ${{ vars.GROWTHBOOK_CLIENT_KEY }} - name: "Run Tests" run: npm run test