From 8cee77aa533d9fa84ea5fd2b660fa4732f4f2032 Mon Sep 17 00:00:00 2001 From: Brandon Kite Date: Wed, 21 Feb 2024 06:01:19 -0800 Subject: [PATCH] Remove failing deployment job (#1692) We had a github action job to deploy the latest fuel-core master to a dev sandbox. However, that env has been decomissioned and this job no longer works. This should be reinstated once we have fluxci integrated. --- .github/workflows/ci.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fe5a1e1f5..44c49febb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -592,34 +592,6 @@ jobs: ENV: 'fueldevsway.env' DELETE_INFRA: true - # Deploy Latest Fuel-Core Release - # TODO: remove deploy steps after the old cluster is decommissioned - deploy: - if: github.ref == 'refs/heads/master' - needs: - - publish-docker-image - runs-on: buildjet-4vcpu-ubuntu-2204 - steps: - - name: Set Environment Variables - run: | - tag=(`echo $GITHUB_SHA | cut -c1-7`) - echo "IMAGE_TAG=`echo sha-$tag`" >> $GITHUB_ENV - echo "DEPLOYMENT_VERSION=$(echo $GITHUB_SHA)" >> $GITHUB_ENV - - - name: Deploy Fuel-Core Developer Environment - uses: benc-uk/workflow-dispatch@v1 - with: - workflow: Deploy Fuel-Core on k8s - repo: FuelLabs/fuel-deployment - ref: refs/heads/master - token: ${{ secrets.REPO_TOKEN }} - inputs: '{ "k8s-type": "${{ env.K8S }}", "config-directory": "${{ env.CONFIG }}", "config-env": "${{ env.ENV }}", "deployment-version": "${{ env.DEPLOYMENT_VERSION }}", "image-tag": "${{ env.IMAGE_TAG }}", "delete-infra": "${{ env.DELETE_INFRA }}" }' - env: - K8S: 'eks' - CONFIG: 'fuel-dev1' - ENV: 'fueldevsway.env' - DELETE_INFRA: true - cargo-audit: runs-on: ubuntu-latest continue-on-error: true