From 0950b4e88811b1101964fc1d91b1d9e574c46dfa Mon Sep 17 00:00:00 2001 From: Bruno Menezes Date: Thu, 5 Oct 2023 17:48:49 +1300 Subject: [PATCH] refactor: changing the branch ref for aquarium deployments. --- .github/workflows/deploy.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index a17f9aa..9f99ff5 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -3,8 +3,8 @@ on: push: branches: - main - - mainnet - - sepolia + - mainnet-aquarium + - sepolia-aquarium concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -32,8 +32,8 @@ jobs: - name: Publish coveralls report uses: coverallsapp/github-action@master with: - path-to-lcov: 'coverage/lcov.info' - github-token: ${{ secrets.GITHUB_TOKEN }} + path-to-lcov: 'coverage/lcov.info' + github-token: ${{ secrets.GITHUB_TOKEN }} - name: Aquarium Login run: npm run sqd:auth @@ -41,9 +41,9 @@ jobs: SQD_API_KEY: ${{ secrets.SQD_API_KEY }} - name: Deploy sepolia - if: github.ref == 'refs/heads/sepolia' + if: github.ref == 'refs/heads/sepolia-aquarium' run: npm run sqd:deploy:sepolia -- --no-stream-logs --update - name: Deploy mainnet - if: github.ref == 'refs/heads/mainnet' + if: github.ref == 'refs/heads/mainnet-aquarium' run: npm run sqd:deploy:mainnet -- --no-stream-logs --update