Skip to content

Commit eafd826

Browse files
authored
fix(ipa): Fix release output (#865)
1 parent 195bf2d commit eafd826

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ipa-release.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
version_changed=$(./.github/scripts/ipa_version_check.sh)
3131
echo "Version changed? ${version_changed}"
32-
echo "version_changed=${version_changed}" >> "${GITHUB_ENV}"
32+
echo "version_changed=${version_changed}" >> "${GITHUB_OUTPUT}"
3333
3434
publish:
3535
needs: check-version
@@ -47,7 +47,8 @@ jobs:
4747
registry-url: 'https://registry.npmjs.org'
4848
- run: npm ci
4949
working-directory: tools/spectral/ipa
50-
- run: npm publish --access public
51-
working-directory: tools/spectral/ipa
52-
env:
53-
NODE_AUTH_TOKEN: ${{ secrets.IPA_VALIDATION_TOKEN }}
50+
- run: echo "Test"
51+
#npm publish --access public
52+
#working-directory: tools/spectral/ipa
53+
#env:
54+
#NODE_AUTH_TOKEN: ${{ secrets.IPA_VALIDATION_TOKEN }}

0 commit comments

Comments
 (0)