auto-obs-rb-restart/.forgejo/workflows/release.yml
Mylloon 02f13060fe
Some checks failed
Upload release / build (push) Failing after 32s
fix job
2024-10-07 20:30:00 +02:00

30 lines
635 B
YAML

name: Upload release
on:
push:
branches: [main]
jobs:
build:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install compiler
run: |
apt-get update &&
apt-get install -y mingw-w64
- name: Build
run: make
- name: Create ZIP file
run: zip -r auto-obs-rp-restart.zip LICENSE AutoOBSRPRestart.lua monitor.dll
- name: Create release
uses: akkuman/gitea-release-action@v1
with:
token: ${{ secrets.TOKEN }}
name: Latest version
tag_name: latest
files: auto-obs-rp-restart.zip