Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,41 +16,47 @@ jobs:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: windows.yml
name: packages_windows
branch: ${{ github.ref_name }}

- name: Download ubuntu 22 artifact
uses: dawidd6/action-download-artifact@v14
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: ubuntu22.yml
name: artifacts_ubuntu_22
branch: ${{ github.ref_name }}

- name: Download ubuntu 24 artifact
uses: dawidd6/action-download-artifact@v14
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: ubuntu24.yml
name: artifacts_ubuntu_24
branch: ${{ github.ref_name }}

- name: Download ubuntu arm artifact
uses: dawidd6/action-download-artifact@v14
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: linux-arm.yml
name: artifacts_linux_arm
branch: ${{ github.ref_name }}

#- name: Download macos artifact
# uses: dawidd6/action-download-artifact@v14
# with:
# github_token: ${{secrets.GITHUB_TOKEN}}
# workflow: macos10.yml
# name: artifacts_macos_10
# branch: ${{ github.ref_name }}

- name: Download wasm artifact
uses: dawidd6/action-download-artifact@v14
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: wasm.yml
name: artifacts_wasm
branch: ${{ github.ref_name }}

- run: |
ls -l
Expand Down
Loading