Skip to content

Commit fc79e09

Browse files
ci: try to fix publishing release (fix #996)
1 parent 3f00db2 commit fc79e09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish-alpha.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
publish:
1616
name: Publish alpha packages
1717
runs-on: ubuntu-latest
18-
if: ${{ !$PUBLISH_LATEST }}
18+
if: ${{ env.PUBLISH_LATEST != 'true' }}
1919
outputs:
2020
SUBGRAPH_CHANGES: ${{ steps.export-changed-subgraph-files.outputs.SUBGRAPH_CHANGES }}
2121
permissions:
@@ -99,7 +99,7 @@ jobs:
9999
publish_latest_release:
100100
name: Publish latest packages
101101
runs-on: ubuntu-latest
102-
if: ${{ $PUBLISH_LATEST }}
102+
if: ${{ env.PUBLISH_LATEST == 'true' }}
103103
permissions:
104104
contents: write # Required to push commit with updated versions
105105
packages: write # Allows publishing and modifying packages

0 commit comments

Comments
 (0)