Skip to content

Commit

Permalink
fix: fix the CD workflow syntax (#20)
Browse files Browse the repository at this point in the history
* fix: fix the CD syntax workflow

* ci: add branch

* fix: fix syntax in workflow
  • Loading branch information
JoshuaLicense committed Apr 18, 2024
1 parent c60ad82 commit 8b6615c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:
- base: ${{ needs.release-please.outputs.release_created || contains(needs.orchestrator.outputs.changed-directories, 'php/8.2/fpm-nginx') && 'ignored' || 'php/8.2/fpm-nginx' }}
uses: ./.github/workflows/docker.yaml
with:
version: ${{ needs.release-please.outputs.release_created && needs.release-please.outputs.tag_name || github.sha}}
version: ${{ needs.release-please.outputs.release_created && needs.release-please.outputs.tag_name || github.sha }}
local-path: ${{ matrix.base }}
repository: ${{ matrix.base }}
push: true
is-release: ${{ needs.release-please.outputs.release_created }}
is-release: ${{ needs.release-please.outputs.release_created == 'true' }}
permissions:
contents: read
id-token: write
Expand Down

0 comments on commit 8b6615c

Please sign in to comment.