Skip to content

Commit

Permalink
blat
Browse files Browse the repository at this point in the history
  • Loading branch information
Xikaro committed Oct 25, 2024
1 parent 0dda4f1 commit fe0ec8b
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 44 deletions.
87 changes: 44 additions & 43 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ jobs:
grooovy="./groovy/runConfig.json"
cat <<< $(jq '.debug = false' $grooovy) > $grooovy
sed -i -e "s/DEV/${{ needs.info.outputs.project_version }}/g" pakku.json
- name: Cache pakku
uses: actions/[email protected]
Expand Down Expand Up @@ -171,53 +172,53 @@ jobs:
path: ./build/modrinth/${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-modrinth.mrpack
if-no-files-found: error

build-multimc:
name: Build MultiMC Pack
runs-on: ubuntu-latest
needs: [info]
steps:
- name: Checkout
uses: actions/[email protected]

- name: Set GroovyScript debug mode to 'false'
shell: bash
run: |
set +e
grooovy="./groovy/runConfig.json"
cat <<< $(jq '.debug = false' $grooovy) > $grooovy
- name: Cache pakku
uses: actions/[email protected]
with:
path: build/.cache
key: ${{ runner.OS }}-pakku-cache-${{ hashFiles('build/.cache/') }}
restore-keys: |
${{ runner.OS }}-pakku-cache-
- name: Export
run: |
java -jar pakku.jar --debug export
java -jar pakku.jar --debug fetch
- name: Move files
run: |
mv -vf ./build/.cache/curseforge/* ./.pakku/multimc-overrides/
cd ./.pakku/multimc-overrides/
mkdir -p flame
# build-multimc:
# name: Build MultiMC Pack
# runs-on: ubuntu-latest
# needs: [info]
# steps:
# - name: Checkout
# uses: actions/[email protected]

# - name: Set GroovyScript debug mode to 'false'
# shell: bash
# run: |
# set +e

# grooovy="./groovy/runConfig.json"
# cat <<< $(jq '.debug = false' $grooovy) > $grooovy

# - name: Cache pakku
# uses: actions/[email protected]
# with:
# path: build/.cache
# key: ${{ runner.OS }}-pakku-cache-${{ hashFiles('build/.cache/') }}
# restore-keys: |
# ${{ runner.OS }}-pakku-cache-

# - name: Export
# run: |
# java -jar pakku.jar --debug export
# java -jar pakku.jar --debug fetch

# - name: Move files
# run: |
# mv -vf ./build/.cache/curseforge/* ./.pakku/multimc-overrides/
# cd ./.pakku/multimc-overrides/
# mkdir -p flame


# mv -vf manifest.json flame/
cd ./.pakku/multimc-overrides/
# # mv -vf manifest.json flame/
# cd ./.pakku/multimc-overrides/

zip -r ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-multimc.zip icon.png mmc-pack.json instance.cfg .minecraft/ flame/
# zip -r ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-multimc.zip icon.png mmc-pack.json instance.cfg .minecraft/ flame/

- name: Upload zip multimc
uses: actions/[email protected]
with:
name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-multimc
path: ./.pakku/multimc-overrides/${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-multimc.zip
if-no-files-found: error
# - name: Upload zip multimc
# uses: actions/[email protected]
# with:
# name: ${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-multimc
# path: ./.pakku/multimc-overrides/${{ needs.info.outputs.project_name }}-${{ needs.info.outputs.project_version }}-multimc.zip
# if-no-files-found: error

# release:
# name: Release
Expand Down
2 changes: 1 addition & 1 deletion pakku.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Modpack-Vintage",
"version": "4.5.3",
"version": "DEV",
"description": "An innovative modpack that contains GregTech and TerraFirmaCraft on 1.12.x.",
"author": "Exception, Xikaro",
"overrides": [
Expand Down

0 comments on commit fe0ec8b

Please sign in to comment.