From 48deba79ad7405141ec707c29ee837edf9fb8d7e Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Thu, 3 Nov 2022 17:10:56 +0100 Subject: [PATCH] Remove autodeploy --- .github/workflows/python.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f0ec9f14..935bd606 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -110,23 +110,3 @@ jobs: run: bash scripts/deploy_docker.sh ${GITHUB_REF##*/} env: DOCKERHUB_PROJECT: safe-relay-service - autodeploy: - runs-on: ubuntu-latest - needs: [docker-deploy] - if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/tags/') - steps: - - uses: actions/checkout@v3 - - name: Deploy Staging - if: github.ref == 'refs/heads/master' - run: bash scripts/autodeploy.sh - env: - AUTODEPLOY_URL: ${{ secrets.AUTODEPLOY_URL }} - AUTODEPLOY_TOKEN: ${{ secrets.AUTODEPLOY_TOKEN }} - TARGET_BRANCH: "staging" - - name: Deploy Develop - if: github.ref == 'refs/heads/develop' - run: bash scripts/autodeploy.sh - env: - AUTODEPLOY_URL: ${{ secrets.AUTODEPLOY_URL }} - AUTODEPLOY_TOKEN: ${{ secrets.AUTODEPLOY_TOKEN }} - TARGET_BRANCH: "develop"