Add release workflow
This commit is contained in:
parent
39a3555384
commit
40bc9f3068
1 changed files with 23 additions and 0 deletions
23
.forgejo/workflows/release.yml
Normal file
23
.forgejo/workflows/release.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Upload release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build with Make
|
||||
run: make
|
||||
|
||||
- name: Create release
|
||||
uses: akkuman/gitea-release-action@v1
|
||||
env:
|
||||
GITHUB_TOKEN:
|
||||
with:
|
||||
token: ${{ secrets.TOKEN }}
|
||||
files: na.bat
|
Loading…
Reference in a new issue