-
Notifications
You must be signed in to change notification settings - Fork 114
165 lines (160 loc) · 7.76 KB
/
conversion-request.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
name: Conversion Request
on:
issues:
types:
- labeled
jobs:
get-pack-info:
runs-on: ubuntu-latest
if: github.event.label.name == 'conversion'
permissions:
issues: read
timeout-minutes: 2
outputs:
pack_url: ${{ steps.organize-inputs.outputs.PACK_URL }}
default_pack_url: ${{ steps.organize-inputs.outputs.DEFAULT_PACK_URL }}
merge_pack_url: ${{ steps.organize-inputs.outputs.MERGE_PACK_URL }}
default_assets_version: ${{ steps.organize-inputs.outputs.DEFAULT_ASSETS_VERSION }}
block_material: ${{ steps.organize-inputs.outputs.BLOCK_MATERIAL }}
attachable_material: ${{ steps.organize-inputs.outputs.ATTACHABLE_MATERIAL }}
archive_scratch: ${{ steps.organize-inputs.outputs.ARCHIVE_SCRATCH }}
rename_model_files: ${{ steps.organize-inputs.outputs.RENAME_MODEL_FILES }}
steps:
- name: Issue Forms Body Parser
id: parse-issue
uses: zentered/issue-forms-body-parser@v1.5.1
- name: Organize Inputs
id: organize-inputs
run: |
echo ${{ toJSON(steps.parse-issue.outputs.data) }} | jq '
def test_input($input; $default):
if ($input == "*No response*" or $input == "None") then $default else ($input | tostring | gsub("\\\\";"")) end;
{
"pack_url": .["java-pack-direct-download-url"].text[1:-1],
"default_pack_url": test_input(.["default-pack-direct-download-url"].text; " null ")[1:-1],
"merge_pack_url": test_input(.["bedrock-merge-pack-direct-download-url"].text; " null ")[1:-1],
"default_assets_version": test_input(.["default-assets-version"].text; "1.19.3"),
"block_material": test_input(.["block-material"].text; "alpha_test"),
"attachable_material": test_input(.["attachable-material"].text; "entity_alphatest_one_sided"),
"archive_scratch": test_input(.["archive-scratch-files"].text; "false"),
"rename_model_files": test_input(.["rename-model-files"].text; "false")
}' > inputs.json
echo "PACK_URL=$(jq -r '.pack_url' inputs.json)" >> $GITHUB_OUTPUT
echo "DEFAULT_PACK_URL=$(jq -r '.default_pack_url' inputs.json)" >> $GITHUB_OUTPUT
echo "MERGE_PACK_URL=$(jq -r '.merge_pack_url' inputs.json)" >> $GITHUB_OUTPUT
echo "DEFAULT_ASSETS_VERSION=$(jq -r '.default_assets_version' inputs.json)" >> $GITHUB_OUTPUT
echo "BLOCK_MATERIAL=$(jq -r '.block_material' inputs.json)" >> $GITHUB_OUTPUT
echo "ATTACHABLE_MATERIAL=$(jq -r '.attachable_material' inputs.json)" >> $GITHUB_OUTPUT
echo "ARCHIVE_SCRATCH=$(jq -r '.archive_scratch' inputs.json)" >> $GITHUB_OUTPUT
echo "RENAME_MODEL_FILES=$(jq -r '.rename_model_files' inputs.json)" >> $GITHUB_OUTPUT
convert-pack:
runs-on: ubuntu-latest
needs: get-pack-info
permissions:
contents: read
timeout-minutes: 90
outputs:
run_id: ${{ steps.get-pack-info.outputs.pack_url }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Enable default asset cache
id: cache-default-assets
uses: actions/cache@v3
with:
path: /home/runner/work/java2bedrock.sh/java2bedrock.sh/staging/default_assets.zip
key: ${{ runner.os }}-${{ needs.get-pack-info.outputs.default_assets_version }}
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 17
- name: Install dependencies
run: |
sudo apt-get install -y moreutils zip imagemagick
yarn global add spritesheet-js
- name: Convert Pack
id: convert-pack
continue-on-error: false
env:
PACK_URL: ${{ needs.get-pack-info.outputs.pack_url }}
DEFAULT_PACK_URL: ${{ needs.get-pack-info.outputs.default_pack_url }}
MERGE_PACK_URL: ${{ needs.get-pack-info.outputs.merge_pack_url }}
DEFAULT_ASSETS_VERSION: ${{ needs.get-pack-info.outputs.default_assets_version }}
BLOCK_MATERIAL: ${{ needs.get-pack-info.outputs.block_material }}
ATTACHABLE_MATERIAL: ${{ needs.get-pack-info.outputs.attachable_material }}
ARCHIVE_SCRATCH: ${{ needs.get-pack-info.outputs.archive_scratch }}
RENAME_MODEL_FILES: ${{ needs.get-pack-info.outputs.rename_model_files }}
run: |
mkdir -p staging
cp converter.sh staging/
cd staging
chmod +x converter.sh
COLUMNS=$COLUMNS-1 curl --no-styled-output -#L -o input_pack.zip "${PACK_URL}"
MERGE_PACK_FILE="${MERGE_PACK_URL}"
if [ "${MERGE_PACK_URL}" != "null" ]; then
COLUMNS=$COLUMNS-1 curl --no-styled-output -#L -o merge_pack.zip "${MERGE_PACK_URL}"
MERGE_PACK_FILE="merge_pack.zip"
fi
./converter.sh input_pack.zip -w "false" -m ${MERGE_PACK_FILE} -a ${ATTACHABLE_MATERIAL} -b ${BLOCK_MATERIAL} -f ${DEFAULT_PACK_URL} -v ${DEFAULT_ASSETS_VERSION} -r ${RENAME_MODEL_FILES} -s ${ARCHIVE_SCRATCH} -u "true"
- name: Upload converted pack
uses: actions/upload-artifact@v4
with:
name: Pack Files
path: |
staging/target/packaged/geyser_resources.mcpack
staging/target/packaged/geyser_addon.mcaddon
staging/target/geyser_mappings.json
staging/target/scratch_files.zip
staging/config.json
post-result:
runs-on: ubuntu-latest
needs: convert-pack
timeout-minutes: 2
permissions:
issues: write
steps:
- name: Post Result
id: post-result
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.issue.number }}
body: |
## :sparkles: The run has finished! :sparkles:
- Download the pack files from the [action run][1] page. :arrow_double_down:
- Upload the resource pack `geyser_resources.mcpack` to the `packs` folder of your Geyser folder. :file_folder:
- Upload the mappings file `geyser_mappings.json` to the `custom_mappings` folder of your Geyser folder. :page_with_curl:
If you notice issues with the converted files, please refer to the action log for errors and open a bug report if you believe there is an issue with the converter. This issue will be closed automatically.
[1]: https://github.com/Kas-tle/java2bedrock.sh/actions/runs/${{ github.run_id}}
reactions: 'rocket'
- name: Close Issue
uses: peter-evans/close-issue@v2
with:
issue-number: ${{ github.event.issue.number }}
conversion-failed:
runs-on: ubuntu-latest
needs: [get-pack-info, convert-pack, post-result]
if: always() && (needs.get-pack-info.result == 'failure' || needs.convert-pack.result == 'failure' || needs.convert-pack.result == 'post-result')
timeout-minutes: 2
permissions:
issues: write
steps:
- name: Post Result
id: post-result
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.issue.number }}
body: |
## :stop_sign: The run has failed :stop_sign:
- Check the [action run][1] page for errors. :clipboard:
- Status by job:
- Get Pack Info: *${{ needs.get-pack-info.result }}*
- Convert Pack: *${{ needs.convert-pack.result }}*
- Post Result: *${{ needs.post-result.result }}*
If you believe this is an issue with the converter. please open a bug report. This issue will be closed automatically.
[1]: https://github.com/Kas-tle/java2bedrock.sh/actions/runs/${{ github.run_id}}
reactions: 'x'
- name: Close Issue
uses: peter-evans/close-issue@v2
with:
issue-number: ${{ github.event.issue.number }}