Skip to content

更新项目版本号至 2.1.6 #34

更新项目版本号至 2.1.6

更新项目版本号至 2.1.6 #34

Workflow file for this run

name: publish to nuget
on:
push:
branches:
- master # Default release branch
jobs:
publish:
name: list on nuget
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
include-prerelease: true
# Publish
- name: publish on version change
id: publish_nuget
uses: rohith/publish-nuget@v2
with:
# Filepath of the project to be packaged, relative to root of repository
PROJECT_FILE_PATH: src/TinyVFS/TinyVFS.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}