packwiz build in CI
This commit is contained in:
parent
99bd108fad
commit
304b4650e9
25
.github/workflows/modpack.yml
vendored
Normal file
25
.github/workflows/modpack.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: Build & Publish Minecraft Modpack
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
- name: Install packwiz
|
||||
run: go install github.com/packwiz/packwiz@latest
|
||||
|
||||
- name: Build modpack
|
||||
run: packwiz --pack-file ./configs/minecraft/modpack/pack.toml --meta-folder-base ./configs/minecraft/modpack modrinth export
|
Loading…
x
Reference in New Issue
Block a user