chore: trigger pipelines #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Modpack | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Setup Go environment | |
uses: actions/setup-go@v4.1.0 | |
- name: Install packwiz | |
run: go install github.com/packwiz/packwiz@latest | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Build modpacks | |
run: make | |
- name: Upload a modpack artifacts | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: Zapify for Quilt | |
path: "versions/quilt/1.20.1/*.mrpack" |