Skip to content

testing -- replace dynamnic value to static value #78

testing -- replace dynamnic value to static value

testing -- replace dynamnic value to static value #78

Workflow file for this run

name: .NET
on:
release:
types: [published]
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Create Package for Nuget.org\
run: dotnet pack
- name: Publish Package to Nuget.org
run: dotnet nuget push ./Xero.NetStandard.OAuth2/bin/Release/Xero.NetStandard.OAuth2.9.2.0-alpha.nupkg --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json