Move to Gradle, set up publishing, get rid of item steerables workaro… #37
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: Build | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '.gitignore' | |
- 'LICENSE' | |
- 'README.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Gradle | |
uses: GeyserMC/actions/setup-gradle-composite@master | |
with: | |
setup-java_java-version: 21 | |
- name: Build Hurricane | |
run: ./gradlew build | |
- name: Archive Artifacts | |
uses: GeyserMC/actions/upload-multi-artifact@master | |
if: success() | |
with: | |
artifacts: | | |
spigot/build/libs/hurricane-spigot.jar | |
- name: Get Version | |
if: ${{ success() && github.repository == 'GeyserMC/Hurricane' && github.ref_name == 'master' }} | |
id: get-version | |
run: | | |
version=$(cat gradle.properties | grep -o "^version=[0-9\\.]*" | cut -d"=" -f2) | |
echo "VERSION=${version}" >> $GITHUB_OUTPUT | |
- name: Get Release Metadata | |
if: ${{ success() && github.repository == 'GeyserMC/Hurricane' && github.ref_name == 'master' }} | |
uses: GeyserMC/actions/release@master | |
id: metadata | |
with: | |
appID: ${{ secrets.RELEASE_APP_ID }} | |
appPrivateKey: ${{ secrets.RELEASE_APP_PK }} | |
files: | | |
spigot:spigot/build/libs/hurricane-spigot.jar | |
releaseEnabled: false | |
saveMetadata: true | |
releaseProject: 'hurricane' | |
releaseVersion: ${{ steps.get-version.outputs.VERSION }} | |
- name: Publish to Downloads API | |
if: ${{ success() && github.repository == 'GeyserMC/Hurricane' && github.ref_name == 'master' }} | |
uses: GeyserMC/actions/upload-release@master | |
with: | |
username: ${{ vars.DOWNLOADS_USERNAME }} | |
privateKey: ${{ secrets.DOWNLOADS_PRIVATE_KEY }} | |
host: ${{ secrets.DOWNLOADS_SERVER_IP }} | |
files: | | |
spigot/build/libs/hurricane-spigot.jar | |
changelog: ${{ steps.metadata.outputs.body }} | |
- name: Notify Discord | |
if: ${{ (success() || failure()) && github.repository == 'GeyserMC/Hurricane' }} | |
uses: GeyserMC/actions/notify-discord@master | |
with: | |
discordWebhook: ${{ secrets.DISCORD_WEBHOOK }} | |
status: ${{ job.status }} | |
body: ${{ steps.metadata.outputs.body }} |