Merge branch 'kettingpowered:1.20.x' into 1.20.x #19
Workflow file for this run
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: Server builds | |
on: | |
push: | |
branches: | |
- '*' | |
#todo: not sure if tags for ketting should be built. | |
# it might be better to just build all commits to the main branch | |
# and automatically push a tag and release. | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
#This permission is needed to push a release (and/or tags) | |
permissions: | |
contents: write | |
jobs: | |
#fixme: this is not ready yet, because the project itself doesn't compile. | |
create-release: | |
needs: build | |
if: ${{ github.ref == 'refs/heads/1.20.x' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: Rename and move artifacts | |
run: | | |
for dir in artifacts/*/ | |
do | |
dir=${dir%*/} # remove the trailing "/" | |
for file in $dir/* | |
do | |
file=${file##*/} # remove the path before the filename | |
base=${file%.*} # remove the extension | |
ext=${file#"$base"} # remove the filename before the extension | |
echo "moving ${dir}/${file} to artifacts/${file%%.*}-${dir##*/}${ext}" | |
mv "${dir}/${file}" "artifacts/${file%%.*}-${dir##*/}${ext}" | |
done | |
rm -r "${dir}" | |
done | |
- name: release | |
uses: ncipollo/release-action@v1 | |
id: create_release | |
with: | |
generateReleaseNotes: true | |
artifacts: "artifacts/*" | |
tag: ${{ github.sha }} | |
#prerelease: true | |
draft: true | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Cache .gradle | |
uses: burrunan/gradle-cache-action@v1 | |
with: | |
# Enable concurrent cache save and restore | |
# Default is concurrent=false for better log readability | |
concurrent: true | |
# Disable caching of $HOME/.gradle/caches/*.*/generated-gradle-jars | |
save-generated-gradle-jars: false | |
# Disable publishing Gradle Build Scan URL to job report | |
gradle-build-scan-report: false | |
- name: Setup Ketting | |
run: ./gradlew setup | |
- name: Build Ketting Jar | |
run: ./gradlew kettingJar | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.name }} | |
path: | | |
projects/forge/build/libs/ |