From f044a818d2594d446812086939edbd5c3e8bc508 Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Thu, 30 Oct 2025 21:22:06 -0500 Subject: [PATCH] publish to microverse --- .gitea/workflows/publish.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/publish.yml diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml new file mode 100644 index 0000000..b29ad8e --- /dev/null +++ b/.gitea/workflows/publish.yml @@ -0,0 +1,18 @@ +name: Publish +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + name: Build and publish + permissions: + contents: read + steps: + - name: Build and publish + uses: https://git.sanin.dev/packages/build-publish-action@master + with: + username: "${{ secrets.USERNAME }}" + token: "${{ secrets.TOKEN }}"