Skip to content

Merge branch 'dev' of github.com:cocosip/sharp-abp into dev #195

Merge branch 'dev' of github.com:cocosip/sharp-abp into dev

Merge branch 'dev' of github.com:cocosip/sharp-abp into dev #195

Workflow file for this run

name: "build and publish"
on:
push:
tags:
- v*
jobs:
build-test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 9.0.x
- name: Build All
run: .\build-all-release.ps1 -f
working-directory: .\build
shell: powershell
- name: Test All
run: .\test-all.ps1 -f
working-directory: .\build
shell: powershell
- name: Pack All
run: .\pack-all.ps1 -f
working-directory: .\build
shell: powershell
- name: Publish nuget
working-directory: .\build
run: dotnet nuget push ..\dest\*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://www.nuget.org --skip-duplicate