Skip to content

Commit

Permalink
ci: add release workflow for mc/1.20.2 maintenance branch
Browse files Browse the repository at this point in the history
  • Loading branch information
axieum committed Dec 10, 2023
1 parent 20321db commit 8bf419d
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/release-1.20.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Prepares, builds and publishes new releases

name: Release 1.20.2

# On changes to release branches
on:
push:
branches:
- mc/1.20.2
workflow_dispatch:

jobs:
release:
name: Release

runs-on: ubuntu-latest

steps:
- name: 🙌 Prepare release
id: release-please
uses: google-github-actions/release-please-action@v4
with:
config-file: .github/release-please.json
target-branch: mc/1.20.2
token: ${{ secrets.GITHUB_TOKEN }}

outputs:
paths_released: ${{ steps.release-please.outputs.paths_released }}
releases: ${{ toJson(steps.release-please.outputs) }}

publish:
name: Publish

runs-on: ubuntu-latest
needs: release
if: ${{ needs.release.outputs.paths_released != '[]' }}

strategy:
fail-fast: false
matrix:
path: ${{ fromJson(needs.release.outputs.paths_released) }}

steps:
- name: ✨ Checkout repository
uses: actions/checkout@v4

- name: ☕ Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin

- name: 🐘 Set up Gradle
uses: gradle/gradle-build-action@v2

- name: 📢 Publish new release
uses: gradle/gradle-build-action@v2
with:
arguments: ${{ matrix.path == '.' && ':publish' || format('{0}:publish', matrix.path) }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
CURSEFORGE_DEBUG: ${{ secrets.CURSEFORGE_DEBUG }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
MODRINTH_DEBUG: ${{ secrets.MODRINTH_DEBUG }}

- name: 📦 Upload artifacts
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ fromJson(needs.release.outputs.releases)[matrix.path == '.' && 'tag_name' || format('{0}--tag_name', matrix.path)] }}
files: ${{ matrix.path }}/**/build/libs/*
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8bf419d

Please sign in to comment.