Skip to content

Commit

Permalink
chore(actions): create build action
Browse files Browse the repository at this point in the history
  • Loading branch information
CompeyDev authored Aug 18, 2023
1 parent 6f99550 commit bd6b6c7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Modpack

on:
push:

jobs:
build:
runs-on: "ubuntu-latest"
steps:
- name: Install make
run: sudo apt-get -y install make

- name: Setup Go environment
uses: actions/setup-go@v4.1.0

- 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"

0 comments on commit bd6b6c7

Please sign in to comment.