-
Notifications
You must be signed in to change notification settings - Fork 7
58 lines (48 loc) · 1.33 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: "release"
on:
push:
branches:
- "master"
tags:
- "v*"
jobs:
build:
name: "build"
runs-on: "windows-2022"
steps:
- name: set up Cygwin
uses: egor-tensin/setup-cygwin@v4
with:
platform: x64
packages: make zip
- name: checkout
uses: actions/checkout@v4
- name: build
run: |
make.exe genzip
- name: create installer
uses: joncloud/[email protected]
with:
arguments: "/V3"
- name: compress installer (for BOOTH)
run: |
zip.exe VRChatRejoinTool.Installer.BOOTH.zip VRChatRejoinTool.Installer.exe
- name: pre-release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
VRChatRejoinTool.zip
VRChatRejoinTool.Installer.exe
VRChatRejoinTool.Installer.BOOTH.zip
- name: tagged-release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
VRChatRejoinTool.zip
VRChatRejoinTool.Installer.exe
VRChatRejoinTool.Installer.BOOTH.zip