Skip to content

Commit

Permalink
Init modpack
Browse files Browse the repository at this point in the history
  • Loading branch information
erichederstedt committed Dec 28, 2023
1 parent 02cd97f commit 11755bb
Show file tree
Hide file tree
Showing 33 changed files with 55 additions and 1 deletion.
47 changes: 47 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Required by the release action
permissions:
contents: write

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Creates and releases a zip of the modpack in correct format.
- name: Zip files
uses: montudor/action-zip@v1
with:
args: zip -qq -r dolf_old_tech.zip install_server.bat bin mods

- name: List files
run: ls -a

- name: Upload to release
uses: svenstaro/upload-release-action@2.6.1
with:
file: dolf_old_tech.zip
asset_name: dolf_old_tech.zip
overwrite: true
body: ""
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# modpack_dolf_old_tech
# Download
Is located under releases > master > dolf_create.zip

# Server Notes
Default max ram usage is set to 6G can be adjusted in the user_jvm_args.txt file after install.
Binary file added bin/modpack.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions install_server.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
java -jar bin/modpack.jar --installServer .
sleep 1
echo -Xmx6G>>user_jvm_args.txt
Binary file added mods/Ad-Astra-Giselle-Addon-forge-1.20.1-5.8.jar
Binary file not shown.
Binary file added mods/Applied-Mekanistics-1.4.2.jar
Binary file not shown.
Binary file added mods/Connector-1.0.0-beta.32+1.20.1.jar
Binary file not shown.
Binary file added mods/ConnectorExtras-1.8.0+1.20.1.jar
Binary file not shown.
Binary file added mods/EnhancedQuarries-1.20-1.3.5.jar
Binary file not shown.
Binary file added mods/JAOPCA-1.20.1-4.4.5.8.jar
Binary file not shown.
Binary file added mods/Mekanism-1.20.1-10.4.5.19.jar
Binary file not shown.
Binary file added mods/MekanismGenerators-1.20.1-10.4.5.19.jar
Binary file not shown.
Binary file added mods/MekanismTools-1.20.1-10.4.5.19.jar
Binary file not shown.
Binary file added mods/ProjectE-1.20.1-PE1.0.1.jar
Binary file not shown.
Binary file added mods/ad_astra-forge-1.20.1-1.15.5.jar
Binary file not shown.
Binary file added mods/aether-1.20.1-1.0.0-neoforge.jar
Binary file not shown.
Binary file added mods/almostunified-forge-1.20.1-0.7.2.jar
Binary file not shown.
Binary file added mods/appleskin-forge-mc1.20.1-2.5.1.jar
Binary file not shown.
Binary file added mods/appliedenergistics2-fabric-15.0.15.jar
Binary file not shown.
Binary file added mods/canary-mc1.20.1-0.2.10.jar
Binary file not shown.
Binary file added mods/fabric-api-0.90.7+1.10.3+1.20.1.jar
Binary file not shown.
Binary file added mods/ftbbackups2-forge-1.20-1.0.23.jar
Binary file not shown.
Binary file added mods/gravestone-1.20.1-1.0.10.jar
Binary file not shown.
Binary file added mods/ironchest-1.20.1-14.4.4.jar
Binary file not shown.
Binary file added mods/jei-1.20.1-forge-15.2.0.27.jar
Binary file not shown.
Binary file added mods/merequester-forge-1.20.1-1.1.4.jar
Binary file not shown.
Binary file added mods/smoothchunk-1.20.1-3.5.jar
Binary file not shown.
Binary file added mods/tesseract-1.0.35a-forge-mc1.20.1.jar
Binary file not shown.
Binary file added mods/thermal_cultivation-1.20.1-11.0.0.22.jar
Binary file not shown.
Binary file added mods/thermal_expansion-1.20.1-11.0.0.27.jar
Binary file not shown.
Binary file added mods/thermal_foundation-1.20.1-11.0.2.64.jar
Binary file not shown.
Binary file added mods/thermal_innovation-1.20.1-11.0.0.21.jar
Binary file not shown.
Binary file added mods/thermal_integration-1.20.1-11.0.0.23.jar
Binary file not shown.

0 comments on commit 11755bb

Please sign in to comment.