Skip to content

Commit

Permalink
Add version as a dependency for the deploy step #minor (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzman committed Apr 15, 2023
2 parents 8bdc158 + 25cd2ba commit 8a56179
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
needs: analysis
outputs:
new_tag: ${{ steps.bump_version.outputs.new_tag}}
new_tag: ${{ steps.bump_version.outputs.new_tag }}
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
deploy:
name: Deploying
needs: build
needs: [version, build]
runs-on: ubuntu-latest
steps:
- name: Deploy to AWS EC2
Expand Down

0 comments on commit 8a56179

Please sign in to comment.