v1.2.0 #8
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: Publish to NuGet | |
on: | |
release: | |
types: [created] | |
jobs: | |
publish: | |
#if: ${{ false }} # disable for now | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Pack | |
run: dotnet pack --configuration Release DotnetTestSplit/DotnetTestSplit.csproj | |
#- name: Push to GitHub packages | |
# run: | | |
# dotnet nuget add source --username javiertuya --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/javiertuya/index.json" | |
# dotnet nuget push DotnetTestSplit/nupkg/*.nupkg --api-key ${{ secrets.GITHUB_TOKEN }} --source "github" | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push to nuget.org | |
run: dotnet nuget push DotnetTestSplit/nupkg/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source "https://api.nuget.org/v3/index.json" | |