chore: version bump to 3.0.6 to try another nuget release #122
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
nuget: | |
name: nuget | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Parse Version | |
uses: web3j/[email protected] | |
id: version | |
with: | |
value: ${{ github.ref_name }} | |
start: 1 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.x | |
- name: Restore Dependencies | |
run: dotnet restore | |
- name: Generate Coverage Report | |
run: dotnet test # coverage happens by default | |
- name: Upload Coverage Report | |
uses: actions/upload-artifact@v2 | |
with: | |
name: report | |
path: docfx/coverage/report/ | |
- name: Pack | |
run: dotnet pack --no-restore -c Release -p:PackageVersion=${{ steps.version.outputs.result }} -o . | |
- name: Publish NuGet | |
run: dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_TOKEN }} | |
ghpages: | |
name: ghpages | |
needs: nuget | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Download Coverage Report | |
uses: actions/download-artifact@v2 | |
with: | |
name: report | |
path: docfx/coverage/report | |
- name: Build Documentation | |
uses: nikeee/[email protected] | |
with: | |
args: docfx/docfx.json | |
- name: Deploy GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs |