Skip to content

Commit

Permalink
Remove failing deployment job (#1692)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Voxelot committed Feb 21, 2024
1 parent 610385f commit 8cee77a
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8cee77a

Please sign in to comment.