File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed
Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 5050 push : true
5151 builder : ${{ steps.buildx.outputs.name }}
5252 tags : ${{ steps.login-ecr.outputs.registry }}/${{ secrets.aws-ecr-repo-name }}:${{ inputs.deploy-env }}-${{ inputs.image-tags }}
53-
5453 file : ./etl/Dockerfile.extract
5554 context : ./
5655 cache-from : type=gha
Original file line number Diff line number Diff line change 88 test :
99 uses : ./.github/workflows/test.yml
1010
11- release :
12- uses : ./.github/workflows/_release.yaml
13- needs :
14- - test
11+ # release:
12+ # uses: ./.github/workflows/_release.yaml
13+ # needs:
14+ # - test
1515
1616 create-deploy-env :
1717 runs-on : ubuntu-latest
18- needs :
19- - release
18+ # needs:
19+ # - release
2020 outputs :
2121 deploy-env : ${{ steps.output-deploy-env.outputs.deploy-env }}
2222
2323 steps :
2424 - uses : actions/checkout@v3
2525
26+ - name : Set env to dev
27+ id : set-env-dev
28+ run : |
29+ echo "DEPLOY_ENV=dev" >> $GITHUB_ENV
30+
2631 - name : Set env to staging
2732 id : set-env-staging
2833 if : endsWith(github.ref, 'heads/main')
4247
4348 build :
4449 needs :
45- - release
4650 - create-deploy-env
4751 uses : ./.github/workflows/_build.yaml
4852 with :
You can’t perform that action at this time.
0 commit comments