Files
tagex/.gitea/workflows/tag.yaml
Mike Nolan 667d5a4ed5
All checks were successful
Build and Deploy on Tag / build (push) Successful in 6s
first commit
2026-02-04 19:36:16 -06:00

19 lines
398 B
YAML

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/**