mirror of
https://github.com/Mylloon/obs-replay-folders.git
synced 2025-01-15 12:34:33 +01:00
automatic release
This commit is contained in:
parent
0f84fcfbcb
commit
00503b1afd
1 changed files with 26 additions and 0 deletions
26
.github/workflows/upload-release.yml
vendored
Normal file
26
.github/workflows/upload-release.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
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
|
Loading…
Reference in a new issue