forked from Haleth/Aurora
-
Notifications
You must be signed in to change notification settings - Fork 3
57 lines (44 loc) · 1.16 KB
/
package_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: Create Release Package
on:
create:
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
jobs:
is_release:
if: contains(github.ref, 'beta') == false
runs-on: ubuntu-latest
steps:
- name: Check
run: |
echo ${{ github.event }}
echo ${{ github.event_name }}
echo ${{ github.event_path }}
echo ${{ github.ref }}
mainline:
needs: is_release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Mainline Package
uses: BigWigsMods/packager@v2
# wrath:
# needs: is_release
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Create Wrath Package
# uses: BigWigsMods/packager@v2
# with:
# args: -g wrath -m .pkgmeta-wrath
# vanilla:
# needs: is_release
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Create Vanilla Package
# uses: BigWigsMods/packager@v2
# with:
# args: -g classic -m .pkgmeta-vanilla