xrkffgg
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
3 deletions
-
.github/workflows/ui-upload.yml
|
|
@ -11,12 +11,18 @@ permissions: |
|
|
|
contents: read |
|
|
|
|
|
|
|
jobs: |
|
|
|
wait: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Wait |
|
|
|
run: sleep 60 |
|
|
|
upload-ui: |
|
|
|
permissions: |
|
|
|
actions: read # for dawidd6/action-download-artifact to query and download artifacts |
|
|
|
pull-requests: read # for dawidd6/action-download-artifact to query commit hash |
|
|
|
name: deploy preview |
|
|
|
runs-on: ubuntu-latest |
|
|
|
needs: wait |
|
|
|
if: > |
|
|
|
github.repository == 'ant-design/ant-design' && |
|
|
|
github.event.workflow_run.conclusion == 'success' |
|
|
@ -25,7 +31,7 @@ jobs: |
|
|
|
uses: actions/checkout@v3 |
|
|
|
|
|
|
|
- name: Download commit artifact |
|
|
|
uses: dawidd6/action-download-artifact@v2.23.0 |
|
|
|
uses: dawidd6/action-download-artifact@v2 |
|
|
|
with: |
|
|
|
workflow: ${{ github.event.workflow_run.workflow_id }} |
|
|
|
name: commit |
|
|
@ -35,7 +41,7 @@ jobs: |
|
|
|
run: echo "::set-output name=id::$(<commit.txt)" |
|
|
|
|
|
|
|
- name: Download branch artifact |
|
|
|
uses: dawidd6/action-download-artifact@v2.23.0 |
|
|
|
uses: dawidd6/action-download-artifact@v2 |
|
|
|
with: |
|
|
|
workflow: ${{ github.event.workflow_run.workflow_id }} |
|
|
|
name: branch |
|
|
@ -45,7 +51,7 @@ jobs: |
|
|
|
run: echo "::set-output name=id::$(<branch.txt)" |
|
|
|
|
|
|
|
- name: Download snapshots artifact |
|
|
|
uses: dawidd6/action-download-artifact@v2.23.0 |
|
|
|
uses: dawidd6/action-download-artifact@v2 |
|
|
|
with: |
|
|
|
workflow: ${{ github.event.workflow_run.workflow_id }} |
|
|
|
workflow_conclusion: success |
|
|
|