Skip to content

chore(deps): bump MinVer from 4.3.0 to 5.0.0 (#75) #9

chore(deps): bump MinVer from 4.3.0 to 5.0.0 (#75)

chore(deps): bump MinVer from 4.3.0 to 5.0.0 (#75) #9

Workflow file for this run

on:
push:
tags:
- 'v*'
name: Release .NET SDK
jobs:
release-sdks:
name: release-dotnet
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET Core SDK
uses: actions/[email protected]
with:
dotnet-version: 8.x
- name: Test .NET Sdk
run: |
make test
- name: Generate Docs
run: |
dotnet tool update -g docfx
docfx ./docfx.json
- name: Publish .NET Sdk
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: |
make publish
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _site