Skip to content

Update version numbers, import paths, and add new library imports in … #12

Update version numbers, import paths, and add new library imports in …

Update version numbers, import paths, and add new library imports in … #12

Workflow file for this run

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