v4.0.164 #22
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Release | |
on: | |
release: | |
types: | |
- published | |
defaults: | |
run: | |
shell: bash | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
DOTNET_NOLOGO: true | |
jobs: | |
release: | |
if: github.repository == 'vezel-dev/zig-sdk' | |
runs-on: windows-2022 | |
steps: | |
- name: Clone repository | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up .NET | |
uses: actions/[email protected] | |
- name: Build project | |
run: | | |
dotnet tool restore | |
dotnet build | |
- name: Upload NuGet packages | |
run: | | |
dotnet nuget push pkg/feed/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_TOKEN }} --skip-duplicate |