Skip to content

ci: test ci build

ci: test ci build #4

Workflow file for this run

name: Publish NuGet Package
on:
push:
branches: ["citest"]
tags:
- 'v*.*.*'
jobs:
download-artifact:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout Files
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:

Check failure on line 19 in .github/workflows/pack-nuget.yaml

View workflow run for this annotation

GitHub Actions / Publish NuGet Package

Invalid workflow file

The workflow is not valid. .github/workflows/pack-nuget.yaml (Line: 19, Col: 12): Unexpected value '' .github/workflows/pack-nuget.yaml (Line: 20, Col: 7): Unexpected value 'dotnet-version'
dotnet-version: '8.0.x'
- uses: robinraju/release-downloader@v1.9
name: Prepare Artifacts
with:
repository: "KonataDev/libSilkCodec"
latest: true
tarBall: false
zipBall: false
fileName: "*"
out-file-path: "Konata.Codec/Konata.Codec/bin/runtimes"
- name: Publish
run: |
dotnet build -c Release Konata.Codec
dotnet pack -c Release Konata.Codec
dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg Konata.Codec