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 aa492c0 commit dcc2aacCopy full SHA for dcc2aac
.github/workflows/publish.yml
@@ -103,7 +103,7 @@ jobs:
103
needs: [upload-art]
104
# 通过 push 触发的 CI 通过 env 调控。
105
env:
106
- DEPLOY_DENO_PUSH: true
+ DEPLOY_DENO_PUSH: 'true'
107
if: ${{ inputs.deno }} || ( github.event_name == 'push' && env.DEPLOY_DENO_PUSH == 'true' )
108
runs-on: ubuntu-latest
109
permissions:
@@ -123,7 +123,7 @@ jobs:
123
release-docker:
124
needs: [test-docker]
125
126
- DEPLOY_DOCKER_PUSH: false
+ DEPLOY_DOCKER_PUSH: 'false'
127
if: ${{ inputs.docker }} || ( github.event_name == 'push' && env.DEPLOY_DOCKER_PUSH == 'true' )
128
129
0 commit comments