Skip to content

Commit 8ca49fc

Browse files
committed
Use steps.outputs over env
1 parent 6d788a9 commit 8ca49fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
version:
1717
runs-on: ubuntu-latest
1818
outputs:
19-
semver: ${{ env.SEMVER }}
20-
releasable: ${{ env.RELEASABLE }}
21-
tag-exists: ${{ env.TAG_EXISTS }}
19+
semver: ${{ steps.parse.outputs.semver }}
20+
releasable: ${{ steps.parse.outputs.releasable }}
21+
tag-exists: ${{ steps.parse.outputs.tag-exists }}
2222
steps:
2323
- uses: actions/checkout@v3
2424
- uses: pkgxdev/dev@v0

0 commit comments

Comments
 (0)