From 2968baaebf1fe01c4e109d43fd9de530dee0e076 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Wed, 4 Feb 2026 19:48:20 -0600 Subject: [PATCH] My Project --- .gitea/workflows/tag.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/tag.yaml diff --git a/.gitea/workflows/tag.yaml b/.gitea/workflows/tag.yaml new file mode 100644 index 0000000..25d7b74 --- /dev/null +++ b/.gitea/workflows/tag.yaml @@ -0,0 +1,19 @@ +name: Build and Deploy on Tag +on: + push: + tags: + - 'v*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: mkdir bin + - run: echo "Demi Lovato" > bin/file.txt + - uses: akkuman/gitea-release-action@v1 + env: + NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18 + with: + files: |- + bin/** \ No newline at end of file