We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc79e09 commit c7aec71Copy full SHA for c7aec71
1 file changed
.github/workflows/publish-alpha.yaml
@@ -15,7 +15,7 @@ jobs:
15
publish:
16
name: Publish alpha packages
17
runs-on: ubuntu-latest
18
- if: ${{ env.PUBLISH_LATEST != 'true' }}
+ if: ${{ $PUBLISH_LATEST != 'true' }}
19
outputs:
20
SUBGRAPH_CHANGES: ${{ steps.export-changed-subgraph-files.outputs.SUBGRAPH_CHANGES }}
21
permissions:
@@ -99,7 +99,7 @@ jobs:
99
publish_latest_release:
100
name: Publish latest packages
101
102
- if: ${{ env.PUBLISH_LATEST == 'true' }}
+ if: ${{ $PUBLISH_LATEST == 'true' }}
103
104
contents: write # Required to push commit with updated versions
105
packages: write # Allows publishing and modifying packages
0 commit comments