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 bb05681 commit 03ba2c6Copy full SHA for 03ba2c6
.github/workflows/CI.yml
@@ -3,9 +3,9 @@ name: CI
3
on: push
4
5
env:
6
- VERSION: 1337.0.0
7
- BRANCH: ''
8
- COMMIT: ''
+ VERSION: '1.0.0-beta-5'
+ BRANCH: 'master'
+ COMMIT: 'ae02abedfe6a23e99f47e1b7c43342858ee7f14e'
9
10
jobs:
11
build:
@@ -41,3 +41,6 @@ jobs:
41
dotnet new razortest -o ${GITHUB_WORKSPACE}/Test
42
dotnet restore ${GITHUB_WORKSPACE}/Test/Test.csproj --source ${GITHUB_WORKSPACE}/lib
43
dotnet test ${GITHUB_WORKSPACE}/Test
44
+ - name: Push packages to NuGet.org
45
+ run: |
46
+ dotnet nuget push ${GITHUB_WORKSPACE}/template/*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
0 commit comments