TcpDotNet/.github/workflows/release.yml

47 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2022-05-19 09:53:58 +00:00
name: Tagged Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
release:
name: "Tagged Release"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
2024-02-12 17:45:33 +00:00
uses: actions/setup-dotnet@v3
2022-05-19 09:53:58 +00:00
with:
2024-02-12 17:45:33 +00:00
dotnet-version: 8.0.x
2022-05-19 09:53:58 +00:00
- name: Add GitHub NuGet source
run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release
- name: Build NuGet package
run: |
mkdir build
dotnet pack TcpDotNet -p:SymbolPackageFormat=snupkg --include-symbols --include-source -o build
- name: Push NuGet Package to GitHub
run: dotnet nuget push "build/*" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate
- name: Push NuGet Package to nuget.org
run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
2022-05-19 09:53:58 +00:00
- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false