mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-23 20:28:35 +01:00
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
|
on:
|
||
|
push:
|
||
|
tags: ["*"]
|
||
|
jobs:
|
||
|
release:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Clone Repository
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Setup Java
|
||
|
uses: actions/setup-java@v4
|
||
|
with:
|
||
|
java-version: '21'
|
||
|
distribution: 'temurin'
|
||
|
- name: Cache
|
||
|
uses: actions/cache@v4
|
||
|
with:
|
||
|
path: |
|
||
|
~/.gradle/caches
|
||
|
~/.gradle/wrapper
|
||
|
key: ${{ hashFiles('**/build.gradle', '**/gradle-wrapper.properties', '**/gradle.properties') }}
|
||
|
- name: Grab Changelog from Commit Message Body
|
||
|
run: |
|
||
|
changelog=$(echo -e "$MESSAGE" | sed -n '/^$/,$p' | sed '1d')
|
||
|
echo -e "$changelog"
|
||
|
{
|
||
|
echo 'CHANGELOG<<EOF'
|
||
|
echo -e "$changelog"
|
||
|
echo EOF
|
||
|
} >> "$GITHUB_ENV"
|
||
|
env:
|
||
|
MESSAGE: ${{ github.event.head_commit.message }}
|
||
|
- name: Release
|
||
|
run: |
|
||
|
chmod +x ./gradlew
|
||
|
./gradlew publishMods --no-daemon
|
||
|
env:
|
||
|
MR_TOKEN: ${{ secrets.MR_TOKEN }}
|
||
|
CF_TOKEN: ${{ secrets.CF_TOKEN }}
|