RocketModFix.Unturned.Redist.Server #27022
This file contains hidden or 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: RocketModFix.Unturned.Redist.Server | |
on: | |
workflow_run: | |
workflows: ["Update Unturned Redist for Server"] | |
types: | |
- completed | |
push: | |
branches: [ master ] | |
paths: | |
- 'redist/redist-server/**' | |
jobs: | |
build: | |
name: "RocketModFix.Unturned.Redist Pack for Server" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
name: Setup .NET | |
with: | |
dotnet-version: 8.x | |
- uses: nuget/setup-nuget@v2 | |
name: Setup NuGet | |
with: | |
nuget-api-key: ${{ secrets.NUGET_DEPLOY_KEY }} | |
- uses: ./.github/actions/nuget-pack | |
id: nuget-pack | |
with: | |
nuspec_path: redist/redist-server/RocketModFix.Unturned.Redist.Server.nuspec | |
nuget_key: ${{ secrets.NUGET_DEPLOY_KEY }} | |
nuget_push: true | |