Skip to content

Merge pull request #32 from FacturAPI/FAC-1254/feat/customer-edit-links #1

Merge pull request #32 from FacturAPI/FAC-1254/feat/customer-edit-links

Merge pull request #32 from FacturAPI/FAC-1254/feat/customer-edit-links #1

Workflow file for this run

name: Deploy to NuGet
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x' # Adjust the .NET version as needed
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Pack
run: dotnet pack --configuration Release --no-build --output ./nupkg
- name: Publish to NuGet
run: dotnet nuget push ./nupkg/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json