Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
xengine-qyt committed Nov 14, 2024
1 parent 127f494 commit f88bff6
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,33 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- name: Download artifact
- name: Download linuxbuild
uses: dawidd6/action-download-artifact@v6
with:
search_artifacts: true
workflow_search: true
workflow: linuxbuild.yml
workflow_conclusion: success
check_artifacts: false
skip_unpack: true
if_no_artifact_found: fail
path: ./
- name: Download macbuild
uses: dawidd6/action-download-artifact@v6
with:
workflow: macbuild.yml
workflow_conclusion: success
check_artifacts: false
skip_unpack: true
if_no_artifact_found: fail
path: ./
- name: Download msbuild
uses: dawidd6/action-download-artifact@v6
with:
workflow: msbuild.yml
workflow_conclusion: success
check_artifacts: false
skip_unpack: true
if_no_artifact_found: fail
path: ./

- name: Display structure of downloaded files
run: ls -al ./

0 comments on commit f88bff6

Please sign in to comment.