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 2c59926 commit 50d0bc9Copy full SHA for 50d0bc9
.github/workflows/branch.yml
@@ -1,4 +1,4 @@
1
-name: CI
+name: CI Branch
2
3
on:
4
push:
.github/workflows/master.yml
+name: CI Master
@@ -33,6 +33,5 @@ jobs:
33
name: nupkg
34
path: artifacts/*
35
- name: Publish to GitHub
36
- run: |
37
- dotnet tool install -g gpr --no-cache -v q
38
- gpr push "artifacts/*.nupkg" -k ${{ secrets.GH_DEPLOY_KEY }} || true
+ run: dotnet nuget push "artifacts/*.nupkg" -s "github" -k ${{ secrets.GH_DEPLOY_KEY }} --skip-duplicate
+
.github/workflows/production.yml
@@ -1,12 +1,12 @@
+name: CI Production
5
tags:
6
- 'v*'
7
8
jobs:
9
- build:
+ build-publish-prod:
10
runs-on: ubuntu-20.04
11
steps:
12
- name: Checkout
0 commit comments