We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf54f04 commit 9a5e00dCopy full SHA for 9a5e00d
templates/react-native/.github/workflows/publish.yml.twig
@@ -23,7 +23,7 @@ jobs:
23
- name: Determine release tag
24
id: release_tag
25
run: |
26
- if [[ "${{ github.ref }}" == *"-rc"* ]]; then
+ if [[ "${{ '{{' }} github.ref {{ '}}' }}" == *"-rc"* ]]; then
27
echo "tag=next" >> "$GITHUB_OUTPUT"
28
else
29
echo "tag=latest" >> "$GITHUB_OUTPUT"
@@ -37,6 +37,6 @@ jobs:
37
38
# Publish to NPM with the appropriate tag
39
- name: Publish
40
- run: npm publish --tag ${{ steps.release_tag.outputs.tag }}
+ run: npm publish --tag ${{ '{{' }} steps.release_tag.outputs.tag {{ '}}' }}
41
env:
42
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
+ NODE_AUTH_TOKEN: ${{ '{{' }} secrets.NPM_TOKEN {{ '}}' }}
0 commit comments