diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..71ee218 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build + +on: + push: + pull_request: + +jobs: + build: + name: Build Modpack + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Ensure packwiz is executable + run: chmod +x ./scripts/packwiz + + - name: Build Modpack + run: ./scripts/packwiz modrinth export --output ewpratten-master.mrpack + + - name: Upload Modpack + uses: actions/upload-artifact@v2 + with: + name: ewpratten-master.mrpack + path: ewpratten-master.mrpack diff --git a/scripts/packwiz b/scripts/packwiz new file mode 100755 index 0000000..bd68fb8 Binary files /dev/null and b/scripts/packwiz differ