From c490f9055ee3bee1a0ca8079e7015b8fd3f08f56 Mon Sep 17 00:00:00 2001 From: Matija Petrunic Date: Fri, 11 Jun 2021 16:29:31 +0200 Subject: [PATCH] Temporarily remove goerli deployment from ci --- .github/workflows/publish-contracts.yaml | 33 ------------------------ 1 file changed, 33 deletions(-) diff --git a/.github/workflows/publish-contracts.yaml b/.github/workflows/publish-contracts.yaml index 3d06250..36d21ed 100644 --- a/.github/workflows/publish-contracts.yaml +++ b/.github/workflows/publish-contracts.yaml @@ -59,11 +59,6 @@ jobs: env: INFURA_PROJECT_ID: ${{ secrets.INFURA_PROJECT_ID }} ROPSTEN_MNEMONIC: ${{ secrets.ROPSTEN_MNEMONIC }} - - name: Deploy goerli - run: yarn run deploy:goerli - env: - INFURA_PROJECT_ID: ${{ secrets.INFURA_PROJECT_ID }} - GOERLI_MNEMONIC: ${{ secrets.GOERLI_MNEMONIC }} - name: Deploy mainnet run: yarn run deploy:mainnet if: ${{ !contains(needs.tag.outputs.tag, 'beta') }} @@ -95,31 +90,3 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - publish: - name: Release Docker image - runs-on: ubuntu-latest - needs: tag - if: needs.tag.outputs.tag != '' - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Push docker image to GitHub Packages - uses: docker/build-push-action@v1 - with: - username: ${{ github.actor }} - password: ${{ secrets.CR_WRITE_PAT }} - registry: ghcr.io - repository: niftyhorde/swap.kiwi - tags: latest,${{ needs.tag.outputs.tag }} - push: true - - - name: Rollback on failure - if: failure() - uses: author/action-rollback@9ec72a6af74774e00343c6de3e946b0901c23013 - with: - id: ${{ steps.create_release.outputs.id }} - tag: ${{ needs.tag.outputs.tag }} - delete_orphan_tag: true - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}