Skip to content

Commit

Permalink
Fix release.yml steps
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfeSanahuja committed Sep 20, 2023
1 parent c15c43d commit 6949e50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:

deploy-docker:
uses: ./.github/workflows/deploy-docker-jsorolla.yml
needs: test
needs: build
with:
cli: python3 ./docker/docker-build.py push
secrets: inherit

deploy-web:
uses: ./.github/workflows/deploy-jsorolla-web-workflow.yml
needs: [ build, test ]
needs: build
with:
version: ${{ needs.build.outputs.version }}
secrets: inherit

release:
uses: ./.github/workflows/release-github-workflow.yml
needs: [ build, test ]
needs: [ build, deploy-web, deploy-docker ]
with:
version: ${{ needs.build.outputs.version }}

0 comments on commit 6949e50

Please sign in to comment.