Skip to content

Commit e1ef0db

Browse files
authored
Specify secrets env var (#1316)
1 parent c013768 commit e1ef0db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish_stable.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
git merge --ff-only main
3434
3535
- name: Push
36-
if: ${{ secrets.PUBLISH_STABLE }}
36+
if: env.PUBLISH_STABLE == 'true'
37+
env:
38+
PUBLISH_STABLE: ${{ secrets.PUBLISH_STABLE }}
3739
run: |
3840
git push origin stable

0 commit comments

Comments
 (0)