From 481ff3b9e4cce86d2f615e177f24f7070a705450 Mon Sep 17 00:00:00 2001 From: mpetrun5 Date: Thu, 11 Jul 2024 12:47:27 +0200 Subject: [PATCH] Fix deploy from test branch --- .github/workflows/deploy_stage.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_stage.yml b/.github/workflows/deploy_stage.yml index 7e11d00e..84a6c907 100644 --- a/.github/workflows/deploy_stage.yml +++ b/.github/workflows/deploy_stage.yml @@ -6,7 +6,7 @@ name: sygma/deploy/stage on: push: branches: - - main + - test env: AWS_REGION: '${{ secrets.AWS_REGION }}' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f790d51..b57c97d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,12 +6,12 @@ name: Create Sygma relayer release on: push: branches: - - test + - main jobs: release-please: name: release runs-on: ubuntu-latest - if: github.event_name == 'push' && github.ref == 'refs/heads/test' + if: github.event_name == 'push' && github.ref == 'refs/heads/main' steps: - uses: actions/checkout@v2