Skip to content

Commit

Permalink
Set version to '0.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarmil committed Mar 2, 2020
1 parent 2fd7951 commit 133300a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ jobs:
with:
name: nuget

- name: Push to NuGet
run: dotnet nuget push bin/nuget/*.nupkg
--api-key ${{ secrets.NUGET_API_KEY }}
--source https://api.nuget.org/v3/index.json

- name: Push to GitHub release
uses: svenstaro/upload-release-action@1.0.1
uses: svenstaro/upload-release-action@1.1.0
with:
tag: ${{ github.ref }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
file_glob: true
file: bin/nuget/*.nupkg
file_glob: 'true'
file: nuget/*.nupkg

- name: Push to NuGet
run: dotnet nuget push nuget/*.nupkg
--api-key ${{ secrets.NUGET_API_KEY }}
--source https://api.nuget.org/v3/index.json
7 changes: 4 additions & 3 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "0.10-alpha",
"version": "0.10",
"gitCommitIdShortAutoMinimum": 7,
"nuGetPackageVersion": {
"semVer": 2.0
},
"publicReleaseRefSpec": [
"^refs/heads/master$",
"^refs/heads/v\\d+\\.\\d+$"
"^refs/heads/v([\\d.]+)$",
"^refs/tags/v([\\d.]+)$"
]
}
}

0 comments on commit 133300a

Please sign in to comment.