Skip to content

Added support for "source", "project" and "dll" reference directives … #16

Added support for "source", "project" and "dll" reference directives …

Added support for "source", "project" and "dll" reference directives … #16

Workflow file for this run

name: Test
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build
- name: Pack
run: dotnet pack
- name: Push to nuget.org
env:
VERSION: ${{ github.ref_name }}
run: dotnet nuget push "./artifacts/package/release/runfs.${VERSION}.nupkg"
--source https://api.nuget.org/v3/index.json
--api-key ${{ secrets.NUGET_KEY }}