Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Update README.md

Update README.md #18

name: PublishPackages
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Publish to Github
uses: tanaka-takayoshi/[email protected]
with:
nupkg-path: 'AuroraNative/bin/Debug/*.nupkg'
repo-owner: 'timi137137'
gh-user: 'timi137137'
token: ${{ secrets.GITHUBTOKEN }}
- name: Publish to Nuget
uses: brandedoutcast/publish-nuget@v2
with:
PROJECT_FILE_PATH: 'AuroraNative/AuroraNative.csproj'
NUGET_KEY: ${{secrets.NUGETKEY}}