-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (35 loc) · 1.1 KB
/
pack-all.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
name: Package all
on:
workflow_dispatch:
jobs:
package-mod:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Pack data
run: zip -q -r h5x-data.pak *
working-directory: game_data/data
- name: Pack texts
run: zip -q -r h5x-texts.pak *
working-directory: game_texts/texts-EN
- name: Pack interface
run: zip -q -r h5x-interface.pak *
working-directory: game_data/interface
- name: Pack characters
run: zip -q -r h5x-characters.pak *
working-directory: game_data/characters
- name: Pack lua
run: zip -q -r h5x-lua.pak *
working-directory: game_data/lua
- name: Pack doc
run: zip -q -r h5x-doc.pak *
working-directory: game_data/doc
- name: Pack maps
run: zip -q -r h5x-maps.pak *
working-directory: game_data/maps
- name: Upload paks
uses: actions/upload-artifact@v4
with:
name: pak
path: game_data/**/*.pak