bugfixes? #76
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: build | |
on: [ pull_request, push ] | |
jobs: | |
skip: | |
runs-on: ubuntu-latest | |
if: "startsWith(github.event.head_commit.message, '[skip]')" | |
steps: | |
- name: send skipped message | |
uses: appleboy/[email protected] | |
with: | |
webhook_id: ${{ secrets.WEBHOOK_ID }} | |
webhook_token: ${{ secrets.WEBHOOK_TOKEN }} | |
args: '# Build #${{ github.run_number }} skipped' | |
build: | |
runs-on: ubuntu-latest | |
if: "!startsWith(github.event.head_commit.message, '[skip]')" | |
strategy: | |
matrix: | |
java: [ 17 ] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: zulu | |
- name: cache gradle | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/loom-cache | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: give scripts execution permissions | |
run: chmod +x gradlew buildAll | |
- name: Run build script | |
run: ./buildAll -Pwebhook_url=${{ secrets.DISCORD_WEBHOOK }} | |
- name: upload non-merged artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cu-artifacts | |
path: artifacts/unmerged/**/*.jar | |
- name: upload merged artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cu-artifacts-merged | |
path: artifacts/merged/*.jar | |
- name: send failure message | |
if: failure() | |
uses: appleboy/[email protected] | |
with: | |
webhook_id: ${{ secrets.WEBHOOK_ID }} | |
webhook_token: ${{ secrets.WEBHOOK_TOKEN }} | |
args: '# Build #${{ github.run_number }} failed' | |
- name: send artifacts to webhook | |
if: success() | |
run: ./gradlew webhook -Pwebhook_url=${{ secrets.DISCORD_WEBHOOK }} |