Skip to content

Commit

Permalink
Add release pipeline to cosmic core (#9)
Browse files Browse the repository at this point in the history
Co-authored-by: Ghostipedia <[email protected]>
  • Loading branch information
mrquentin and Ghostipedia authored May 11, 2024
1 parent 5939aaf commit 4b69935
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 1 deletion.
66 changes: 66 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Release

on:
workflow_dispatch:
inputs:
version_type:
description: 'The type of version to release (alpha | beta | release)'
default: 'beta'
required: true
type: string

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17

- name: Setup Gradle Caches
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle

- name: Setup Gradle Wrapper
run: chmod +x gradlew

- name: Get Version and Platform
id: properties
uses: christian-draeger/[email protected]
with:
path: ./gradle.properties
properties: "version enabledPlatforms minecraftVersion"

- name: Build Project
run: ./gradlew build

- name: Upload Forge Releases (Curse|Modrinth|Github)
id: forge_release
if: contains(steps.properties.outputs.enabledPlatforms, 'forge')
uses: Kir-Antipov/[email protected]
with:
curseforge-id: ${{ vars.CURSE_ID }}
curseforge-token: ${{ secrets.CURSE_TOKEN }}

github-token: ${{ secrets.GITHUB_TOKEN }}
github-generate-changelog: true
github-tag: "${{ steps.properties.outputs.minecraftVersion }}-${{ steps.properties.outputs.version }}"

files: ./build/libs/!(*-@(dev|sources|dev-shadow)).jar
name: "Cosmic Core ${{ steps.properties.outputs.version }}"
version: ${{ steps.properties.outputs.version }}
version-type: ${{ inputs.version_type }}
changelog-file: changelog.md
loaders: forge
game-versions: ${{ steps.properties.outputs.minecraftVersion }}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mod_author=Ghostipedia

# Dependencies
gtceu_version=1.2.2
ldlib_version=1.0.25.e
ldlib_version=1.0.25.g
registrate_version=MC1.20-1.3.3
kubejs_version=2001.6.3-build.37
patchouli_version=81
Expand Down

0 comments on commit 4b69935

Please sign in to comment.