mirror of
https://github.com/Merith-TK/modpack-template.git
synced 2024-11-23 06:29:31 +00:00
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
name: Release Modpack
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '16' # Change to '8' for Java 8
|
|
|
|
- name: Install 7z
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y p7zip-full
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.23'
|
|
|
|
- name: Update Packwiz
|
|
run: make update-packwiz
|
|
|
|
- name: Make Modpack
|
|
run: make preClean multimc curseforge modrinth postClean
|
|
|
|
- name: Make Modlist
|
|
run: make release-file
|
|
|
|
- name: Upload to Release
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
tag: ${{ github.event.release.tag_name }}
|
|
artifacts: ".build/*"
|
|
allowUpdates: true
|
|
bodyFile: ".build/CHANGELOG.md"
|