Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Dec 6, 2024
1 parent a7a4422 commit 0bd35c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
jobs:
check-if-image-exists:
runs-on: ubuntu-latest
outputs:
image-tag: ${{ steps.retrieve-image-tag.outputs.image-tag }}
steps:
- name: Retrieve Image Tag
id: retrieve-image-tag
Expand Down Expand Up @@ -60,7 +62,7 @@ jobs:
with:
environment: Dev
docker-compose-file: "./docker-compose.prod.yml"
image-tag: ${{ needs.retrieve-image-tag.outputs.image-tag }}
image-tag: ${{ needs.check-if-image-exists.outputs.image-tag }}
env-vars: |
DEPLOYMENT_URL=${{ vars.DEPLOYMENT_URL }}
APOLLON_REDIS_DIAGRAM_TTL=${{ vars.APOLLON_REDIS_DIAGRAM_TTL }}
Expand Down

0 comments on commit 0bd35c0

Please sign in to comment.