forked from Haleth/Aurora
-
Notifications
You must be signed in to change notification settings - Fork 3
65 lines (49 loc) · 1.28 KB
/
package_beta.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
58
59
60
61
62
63
64
65
name: Create Beta Package
on:
create:
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
jobs:
is_beta:
if: contains(github.ref, 'beta') == true
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_beta
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Remove Changelog
run: rm -f CHANGELOG.md
- name: Create Mainline Package
uses: BigWigsMods/packager@v2
# wrath:
# needs: is_beta
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Remove Changelog
# run: rm -f CHANGELOG.md
# - name: Create Wrath Package
# uses: BigWigsMods/packager@v2
# with:
# args: -g wrath -m .pkgmeta-wrath
# vanilla:
# needs: is_beta
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Remove Changelog
# run: rm -f CHANGELOG.md
# - name: Create Vanilla Package
# uses: BigWigsMods/packager@v2
# with:
# args: -g classic -m .pkgmeta-vanilla