diff options
author | Roman / Nea <roman.graef@gmail.com> | 2021-12-29 16:14:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-29 10:14:58 -0500 |
commit | 89164ed02a503ad1578b13625a8bf35cae95f81b (patch) | |
tree | 1ed59eaf522173edcee2d82fff1d74844b79b5db /.github/workflows/build.yml | |
parent | 98436ad0cf75c9a4bacbfb35a63948cc61c543f9 (diff) | |
download | NotEnoughUpdates-89164ed02a503ad1578b13625a8bf35cae95f81b.tar.gz NotEnoughUpdates-89164ed02a503ad1578b13625a8bf35cae95f81b.tar.bz2 NotEnoughUpdates-89164ed02a503ad1578b13625a8bf35cae95f81b.zip |
github webhook action mashup 400 (#46)
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 60b1719f..f7eb2b2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,11 +18,21 @@ on: workflow_dispatch: jobs: build: - + env: + GIT_URL: ${{ github.server_url }}/${{ github.repository }}/tree/${{ github.sha }} + REF_NAME: ${{ github.ref_name }} + WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Send discord notification + id: sendmsg + if: ${{ env.WEBHOOK_URL }} + run: | + ./.github/workflows/send_webhook_update.sh + env: + STATUS: WORKING - name: Set up JDK 8 uses: actions/setup-java@v2 with: @@ -33,4 +43,18 @@ jobs: run: chmod +x ./gradlew && ./gradlew setupCIWorkspace build --no-daemon - uses: actions/upload-artifact@v2 with: - path: build/libs/*-dep.jar + path: build/libs/*-deps.jar + - name: Update discord notification + if: ${{ env.WEBHOOK_URL && success() }} + run: | + ./.github/workflows/send_webhook_update.sh + env: + STATUS: SUCCESS + MESSAGE_ID: ${{ steps.sendmsg.outputs.MESSAGE_ID }} + - name: Update discord notification + if: ${{ env.WEBHOOK_URL && failure() }} + run: | + ./.github/workflows/send_webhook_update.sh + env: + STATUS: FAILURE + MESSAGE_ID: ${{ steps.sendmsg.outputs.MESSAGE_ID }} |