this repo has no description

CI: Fix double archive(?)

Changed files
+4 -7
.github
workflows
scripts
+3 -2
.github/workflows/build.yml
···
name: Build Pack
on:
+
workflow_dispatch:
push:
paths:
- "x256/**"
···
- name: Install Dependencies
run: |
sudo apt-get update
-
sudo apt-get install -y jq zip
+
sudo apt-get install -y jq
- name: Build Pack ZIP
run: bash scripts/generate-pack.sh
···
uses: actions/upload-artifact@v4
with:
name: neoduke
-
path: neoduke.zip
+
path: output/
+1 -5
scripts/generate-pack.sh
···
mv "$EMOJI_ARRAY" "output/meta.json"
mv "$FILES_OBJECT" "output/pack.json"
-
cp "LICENSE.txt" "output/LICENSE.txt"
-
-
cd output
-
zip -r "../neoduke.zip" ./*
-
cd ..
+
cp "LICENSE.txt" "output/LICENSE.txt"