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 7b7888f commit 20f6308Copy full SHA for 20f6308
.github/workflows/pr.yml
@@ -1,4 +1,4 @@
1
-name: Publish Finite.Commands to MyGet
+name: Build pull request
2
3
on:
4
pull_request:
.github/workflows/publish.yml
+name: Build and publish Finite.Commands
push:
@@ -7,6 +7,9 @@ on:
7
paths-ignore:
8
- 'docs/**'
9
10
+env:
11
+ MYGET_FEED: https://www.myget.org/F/finitereality/api/v2/package
12
+
13
jobs:
14
build:
15
runs-on: ubuntu-latest
@@ -35,3 +38,6 @@ jobs:
35
38
uses: actions/upload-artifact@v2
36
39
with:
37
40
path: ${{ github.workspace }}/artifacts/pkg/Release/*.nupkg
41
42
+ - name: Publish packages
43
+ run: dotnet nuget push "${{ github.workspace }}/artifacts/pkg/Release/*.nupkg" -k "${{ secrets.myget }}" -s "$MYGET_FEED"
0 commit comments