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 ed1366b commit d8e29e8Copy full SHA for d8e29e8
.github/workflows/deploy.yml
@@ -15,7 +15,11 @@ jobs:
15
check:
16
runs-on: ubuntu-latest
17
environment: publish
18
- if: github.ref == 'refs/heads/master' && github.event.workflow_run.conclusion == 'success'
+ if: |
19
+ true
20
+ && github.ref == 'refs/heads/master'
21
+ && github.event.workflow_run.head_repository.full_name == github.event.repository.full_name
22
+ && github.event.workflow_run.conclusion == 'success'
23
outputs:
24
secrets: ${{ steps.checker.outputs.secrets }}
25
steps:
@@ -66,4 +70,4 @@ jobs:
66
70
ALIOSS_SK: ${{ secrets.ALIOSS_SK }}
67
71
ALIOSS_BUCKET: ${{ vars.ALIOSS_BUCKET }}
68
72
ALIOSS_ENDPOINT: ${{ vars.ALIOSS_ENDPOINT }}
69
- run: python3 .deploy.py -p / build
73
+ run: python3 .deploy.py -p open/ build
0 commit comments