diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..674ae79 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +name: Release +on: + workflow_dispatch: + inputs: + version: + type: string + description: Modpack Version + required: true + +jobs: + run_mrpack_distributor: + runs-on: ubuntu-latest + name: Test mrpack distributor + steps: + - uses: actions/setup-go@v4.1.0 + - run: go install github.com/packwiz/packwiz@latest + - name: Copy stuff + uses: actions/checkout@v4 + - uses: jirutka/setup-alpine@v1 + with: + branch: v3.15 + - run: curl -L https://github.com/LilydevMC/mrpack-distributor/releases/download/0.1.0-alpha.2/mrpack-distributor_0.1.0-alpha.2_x86_64-unknown-linux-musl.tar.gz -o mrpack-dist.tar.gz + - run: tar xvf mrpack-dist.tar.gz && chmod +x mrpack-distributor + - run: ./mrpack-distributor run -dv ${{ github.event.inputs.version }} +# with: +# version: ${{ github.event.inputs.version }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a09c56d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.idea diff --git a/index.toml b/index.toml new file mode 100644 index 0000000..eaf7fff --- /dev/null +++ b/index.toml @@ -0,0 +1,31 @@ +hash-format = "sha256" + +[[files]] +file = ".github/workflows/release.yml" +hash = "9b5272d35067d013012f7d5ca650edfafeca024e5579e21c73cf57b30eaf3cec" + +[[files]] +file = ".idea/inspectionProfiles/Project_Default.xml" +hash = "f07c35064e6b5c0d6f6e4d2f0bce003e1bce714767be7ab173fad638e1fc4422" + +[[files]] +file = ".idea/vcs.xml" +hash = "6323e12648862a0a96fc0d7877672817d6cd91e2c2a3c3d78f1090db23c6e88e" + +[[files]] +file = ".idea/workspace.xml" +hash = "2e55447aa507150ce6d6d6dcdcd86e1f99871a5ade512ae3c1318813873776dd" + +[[files]] +file = "LICENSE" +hash = "6b0382b16279f26ff69014300541967a356a666eb0b91b422f6862f6b7dad17e" + +[[files]] +file = "mods/iris.pw.toml" +hash = "7df52a269aaabcb9c4d3ce72322177f4cb5d2e8fc8d506554fa6b6290b0ad548" +metafile = true + +[[files]] +file = "mods/sodium.pw.toml" +hash = "ff614f50beb3bc29a699dbcc0a61f65bd6c6154cd374f2763ee57cf578045a8f" +metafile = true diff --git a/mods/iris.pw.toml b/mods/iris.pw.toml new file mode 100644 index 0000000..af04a13 --- /dev/null +++ b/mods/iris.pw.toml @@ -0,0 +1,13 @@ +name = "Iris Shaders" +filename = "iris-mc1.20.2-1.6.10.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/YL57xq9U/versions/O7RZrusV/iris-mc1.20.2-1.6.10.jar" +hash-format = "sha1" +hash = "daa258f5acba8a7cc6cc31c2b4d635e342d27e22" + +[update] +[update.modrinth] +mod-id = "YL57xq9U" +version = "O7RZrusV" diff --git a/mods/sodium.pw.toml b/mods/sodium.pw.toml new file mode 100644 index 0000000..69b7476 --- /dev/null +++ b/mods/sodium.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium" +filename = "sodium-fabric-mc1.20.2-0.5.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/AANobbMI/versions/bbP1qBMr/sodium-fabric-mc1.20.2-0.5.3.jar" +hash-format = "sha1" +hash = "37d1fb5be973beba13b88ae6a6f8158dc80a12ad" + +[update] +[update.modrinth] +mod-id = "AANobbMI" +version = "bbP1qBMr" diff --git a/pack.toml b/pack.toml new file mode 100644 index 0000000..f839867 --- /dev/null +++ b/pack.toml @@ -0,0 +1,12 @@ +name = "Mrpack Dist Test" +version = "1.0.0" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "5f4d527d602af5fbe604585eee82b8026471bec10e86ad7f6c5f64aa2bdf82d9" + +[versions] +minecraft = "1.20.2" +quilt = "0.21.0"