All checks were successful
Build and Deploy on Tag / build (push) Successful in 6s
19 lines
398 B
YAML
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/** |