Skip to content

Added Get PaymentTerms and Layouts methods #29

Added Get PaymentTerms and Layouts methods

Added Get PaymentTerms and Layouts methods #29

Workflow file for this run

name: Release to Nuget.org
on:
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Checkout repository
uses: actions/checkout@master
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Publish
run: dotnet pack Hexio.EconomicClient -c Release --no-build -o /tmp/nuget -p:PackageVersion=${GITHUB_REF:10}
- name: Push to registry
run: dotnet nuget push /tmp/nuget/*.nupkg -k ${{ secrets.NugetApiKey }} -s https://nuget.org