This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
NuGet Package for UnturnedGuard.NuGetPackages #15
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: NuGet Package for UnturnedGuard.NuGetPackages | |
on: | |
create: | |
tags: | |
- "*" | |
jobs: | |
build: | |
name: "UnturnedGuard.NuGetPackages Build" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-dotnet@v3 | |
name: Setup .NET | |
with: | |
dotnet-version: 7.x | |
- uses: ./.github/actions/project-build | |
id: project-build | |
with: | |
project_path: src/UnturnedGuard.NuGetPackages | |
github_token: ${{ secrets.PAT }} | |
nuget_key: ${{ secrets.NUGET_DEPLOY_KEY }} | |
nuget_push: true |