Update version numbers, import paths, and add new library imports in … #12
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: CD-GitHub | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+-dev-[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Pack | |
run: | | |
dotnet nuget update source PackSite --configfile ./src/NuGet.config -u ${{ secrets.GPR_OWNER }} -p ${{secrets.GPR_TOKEN }} --store-password-in-clear-text | |
dotnet pack src/PackSite.Library.StringUnformatter.sln --configuration Release | |
- name: Deploy to GitHub Package Registry | |
run: | | |
dotnet nuget push src/PackSite.Library.StringUnformatter/bin/Release/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} --skip-duplicate |