-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add release pipeline to cosmic core (#9)
Co-authored-by: Ghostipedia <[email protected]>
- Loading branch information
1 parent
5939aaf
commit 4b69935
Showing
2 changed files
with
67 additions
and
1 deletion.
There are no files selected for viewing
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
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 }} |
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