This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
build #58
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 | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
version_type: | |
description: "The type of this version. e.g alpha" | |
type: choice | |
default: beta | |
options: | |
- release | |
- beta | |
- alpha | |
required: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: | | |
!contains(github.event.head_commit.message, '[ci skip]') | |
outputs: | |
version_info: ${{ steps.get_version.outputs.version_info }} | |
version_plain: ${{ steps.get_version.outputs.version_plain }} | |
steps: | |
- name: checkout repository | |
uses: actions/[email protected] | |
- name: validate gradle wrapper | |
uses: gradle/[email protected] | |
- name: setup jdk | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: gradle | |
- name: make gradle wrapper executable | |
run: chmod +x ./gradlew | |
- name: build | |
run: ./gradlew build | |
- name: get version #https://stackoverflow.com/questions/71089787/how-to-get-version-name-from-android-gradle-file-in-github-actions | |
id: get_version | |
run: | | |
echo "version_info=$(${{github.workspace}}/gradlew -q printVersionName)" >> $GITHUB_OUTPUT | |
echo "version_plain=$(${{github.workspace}}/gradlew -q printVersion)" >> $GITHUB_OUTPUT | |
- name: capture build artifacts | |
uses: actions/[email protected] | |
with: | |
name: Artifacts #https://stackoverflow.com/questions/58886293/getting-current-branch-and-commit-hash-in-github-action | |
path: build/libs/ | |
packages: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/[email protected] | |
- name: setup jdk | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: gradle | |
- name: make gradle wrapper executable | |
run: chmod +x ./gradlew | |
- name: publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
./gradlew publish | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
steps: | |
- name: checkout repository | |
uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
name: Artifacts | |
path: build/libs | |
- name: publish release | |
uses: Kir-Antipov/[email protected] | |
with: | |
version-type: ${{ inputs.version_type }} | |
changelog-file: CHANGELOG.md | |
name: ${{ needs.build.outputs.version_info }} | |
version: ${{ needs.build.outputs.version_plain }} | |
game-versions: | | |
1.20.1 | |
loaders: | | |
fabric | |
java: | | |
17 | |
files: | | |
build/libs/!(*-@(dev|sources|javadoc|dependencies|full-dependencies)).jar | |
build/libs/*-@(dev|sources|javadoc).jar | |
github-tag: ${{ needs.build.outputs.version_plain }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
github-commitish: ${{ github.sha }} | |
github-prerelease: false | |
modrinth-id: 86bUtxWv | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
modrinth-featured: true | |
modrinth-unfeature-mode: subset | |
modrinth-dependencies: | | |
fabric-api(required) | |
dark-matter(embedded) |