Skip to content

Commit bcefbdf

Browse files
committed
Fix version job's outputs
1 parent bdfc5f4 commit bcefbdf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci-cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
version:
1414
runs-on: ubuntu-latest
1515
outputs:
16-
semver: ${{ steps.parse.outputs.semver }}
17-
releasable: ${{ steps.parse.outputs.releasable }}
18-
tag-exists: ${{ steps.parse.outputs.tag-exists }}
16+
semver: ${{ env.SEMVER }}
17+
releasable: ${{ env.RELEASABLE }}
18+
tag-exists: ${{ env.TAG_EXISTS }}
1919
steps:
2020
- uses: actions/checkout@v3
2121
- uses: pkgxdev/dev@v0
@@ -61,9 +61,9 @@ jobs:
6161
expected: ${{ matrix.data.expected }}
6262

6363
push:
64-
name: ${{ needs.version.outputs.releasable == 'true' && 'push' || 'push (dry-run)' }}
6564
runs-on: ubuntu-latest
6665
needs: [ version, build, e2e-tests ]
66+
name: ${{ needs.version.outputs.releasable == 'true' && 'push' || 'push (dry-run)' }}
6767
permissions:
6868
packages: write
6969
steps:

0 commit comments

Comments
 (0)