Update for recent entity refactor changes #37
Workflow file for this run
This file contains hidden or 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: | |
| - '.idea/copyright/*.xml' | |
| - '.gitignore' | |
| - 'LICENSE' | |
| - 'README.md' | |
| - 'bind9/**' | |
| 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 GeyserConnect | |
| run: ./gradlew build | |
| - name: Archive artifacts | |
| uses: GeyserMC/actions/upload-multi-artifact@master | |
| if: success() | |
| with: | |
| artifacts: build/libs/GeyserConnect.jar | |
| - name: Get Version | |
| if: ${{ success() && github.repository == 'GeyserMC/GeyserConnect' && github.ref_name == 'master' }} | |
| id: get-version | |
| run: | | |
| version=$(cat build.gradle | grep -o "version '[0-9\\.]*'" | cut -d" " -f2 | sed "s/'//g") | |
| echo "VERSION=${version}" >> $GITHUB_OUTPUT | |
| - name: Get Release Metadata | |
| if: ${{ success() && github.repository == 'GeyserMC/GeyserConnect' && github.ref_name == 'master' }} | |
| uses: GeyserMC/actions/release@master | |
| id: metadata | |
| with: | |
| appID: ${{ secrets.RELEASE_APP_ID }} | |
| appPrivateKey: ${{ secrets.RELEASE_APP_PK }} | |
| files: | | |
| geyserconnect:build/libs/GeyserConnect.jar | |
| releaseEnabled: false | |
| saveMetadata: true | |
| releaseProject: 'geyserconnect' | |
| releaseVersion: ${{ steps.get-version.outputs.VERSION }} | |
| - name: Publish to Downloads API | |
| if: ${{ success() && github.repository == 'GeyserMC/GeyserConnect' && 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: | | |
| build/libs/GeyserConnect.jar | |
| changelog: ${{ steps.metadata.outputs.body }} | |
| - name: Publish to Modrinth | |
| if: ${{ success() && github.repository == 'GeyserMC/GeyserConnect' && github.ref_name == 'master' }} | |
| env: | |
| CHANGELOG: ${{ steps.metadata.outputs.body }} | |
| BUILD_NUMBER: ${{ steps.metadata.outputs.tagBase }} | |
| MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
| run: ./gradlew modrinth | |
| - name: Notify Discord | |
| if: ${{ (success() || failure()) && github.repository == 'GeyserMC/GeyserConnect' }} | |
| uses: GeyserMC/actions/notify-discord@master | |
| with: | |
| discordWebhook: ${{ secrets.DISCORD_WEBHOOK }} | |
| status: ${{ job.status }} | |
| body: ${{ steps.metadata.outputs.body }} |