change workflow folder name to gitea

This commit is contained in:
2026-04-28 12:25:56 +02:00
parent fba798ce50
commit 1efd6cf0c6
+30
View File
@@ -0,0 +1,30 @@
name: Publish to Thunderstore
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.x'
- name: Restore
run: |
dotnet restore --locked-mode
dotnet tool restore
- name: Pack and Publish Thunderstore
env:
TCLI_AUTH_TOKEN: ${{ secrets.TCLI_AUTH_TOKEN }}
run: dotnet pack -c Release --no-restore -property:PublishTS=true -v d