We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f00db2 commit fc79e09Copy full SHA for fc79e09
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: ${{ !$PUBLISH_LATEST }}
+ if: ${{ env.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: ${{ $PUBLISH_LATEST }}
+ if: ${{ env.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