Skip to content

ci: test ci build

ci: test ci build #3

Workflow file for this run

name: Publish NuGet Package
on:
push:
tags:
- 'v*.*.*'
jobs:
download-artifact:
runs-on: ubuntu-latest

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

View workflow run for this annotation

GitHub Actions / .github/workflows/pack-nuget.yaml

Invalid workflow file

You have an error in your yaml syntax on line 10
steps:
- uses: actions/checkout@v4
name: Checkout Files
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- uses: robinraju/[email protected]
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