Skip to content

update readme

update readme #40

Workflow file for this run

name: CI
on: [ "push", "pull_request" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Run the Cake script
uses: cake-build/cake-action@v3
with:
verbosity: Diagnostic
- uses: actions/upload-artifact@v4
with:
name: SmolMod.dll
path: SmolMod/bin/Release/SmolMod.dll
- uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
draft: true
files: SmolMod/bin/Release/SmolMod.dll