Skip to content

Commit 32badda

Browse files
authored
Create publish_nuget.yml
1 parent 60a12cd commit 32badda

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/publish_nuget.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Publish NuGet
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Download Windows artifact
12+
uses: dawidd6/action-download-artifact@v2
13+
with:
14+
github_token: ${{secrets.GITHUB_TOKEN}}
15+
workflow: windows.yml
16+
17+
- name: Download Ubuntu artifact
18+
uses: dawidd6/action-download-artifact@v2
19+
with:
20+
github_token: ${{secrets.GITHUB_TOKEN}}
21+
workflow: ubuntu18.yml
22+
23+
- name: Download macos artifact
24+
uses: dawidd6/action-download-artifact@v2
25+
with:
26+
github_token: ${{secrets.GITHUB_TOKEN}}
27+
workflow: macos10.yml
28+
29+
- run: |
30+
ls

0 commit comments

Comments
 (0)