Skip to content

Bump Markdig from 0.40.0 to 1.3.0 #100

Bump Markdig from 0.40.0 to 1.3.0

Bump Markdig from 0.40.0 to 1.3.0 #100

Workflow file for this run

name: CI (Debug)
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: Restore dependencies
run: dotnet restore BoneFish.sln
- name: Build
run: dotnet build BoneFish.sln --no-restore
- name: Publish
run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Debug --self-contained false .\Bloxstrap\Bloxstrap.csproj
- name: Rename output
run: ren .\Bloxstrap\bin\Debug\net9.0-windows\win-x64\publish\BoneFish.exe BoneFish.exe 2>$null || echo "File already named correctly"
- name: Upload Artifact
uses: actions/upload-artifact@v7
with:
name: BoneFish-Debug
path: .\Bloxstrap\bin\Debug\net9.0-windows\win-x64\publish\BoneFish.exe
if-no-files-found: error