mirror of
https://github.com/Mylloon/obs-replay-folders.git
synced 2024-11-10 02:07:01 +01:00
26 lines
524 B
YAML
26 lines
524 B
YAML
name: Upload release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build with Make
|
|
run: make
|
|
|
|
- name: Create ZIP file
|
|
run: |
|
|
powershell Compress-Archive -Path LICENSE, OBSReplayFolders.lua, detect_game.dll -DestinationPath obs-replay-folders.zip
|
|
|
|
- name: Create release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: obs-replay-folders.zip
|