Skip to content

updates: Readme

updates: Readme #1

Workflow file for this run

name: Publish Mod To TS
on:
push:
tags: "*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
# Use checkout to publish the files in your repo
- name: Checkout
uses: actions/checkout@v3
- name: Setup Dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x"
- name: Restore and Build
run: |
dotnet restore
dotnet tool restore
dotnet build
- name: Publish to TS
env:
TCLI_AUTH_TOKEN: ${{ secrets.TCLI_AUTH_TOKEN }}
run: |
dotnet tcli publish --config-path "./tspublish/thunderstore.toml" --package-version ${{ github.ref_name }}