Skip to content
# https://github.com/xoxfaby/BetterUI/blob/master/.github/workflows/build-and-release.yml
name: Build and Release
on:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
build:
uses: ./.github/workflows/dotnet-publish.yml
release-thunderstore:
needs: build
uses: ./.github/workflows/thunderstore.yml
with:
version: ${{ needs.build.outputs.version }}
secrets:
THUNDERSTORE_TOKEN: ${{ secrets.THUNDERSTORE_TOKEN }}
release-github:
permissions: write-all
needs: release-thunderstore
uses: ./.github/workflows/release.yml