27 lines
567 B
YAML
27 lines
567 B
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: setup go
|
|
uses: https://github.com/actions/setup-go@v4
|
|
with:
|
|
go-version: ">=1.20.1"
|
|
- name: Release Modpack
|
|
uses: https://git.rainnny.club/Rainnny/release-action@main
|
|
with:
|
|
files: |-
|
|
instance.cfg
|
|
mmc-pack.json
|
|
.minecraft/mods
|
|
api_key: "${{secrets.RELEASE_TOKEN}}"
|