mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-07 07:14:00 -07:00
Notify Discord on Docker build status
This commit is contained in:
parent
8384ec7f15
commit
3c1b849a5d
2 changed files with 16 additions and 0 deletions
.github/workflows
8
.github/workflows/publishdocker-branch.yml
vendored
8
.github/workflows/publishdocker-branch.yml
vendored
|
@ -18,3 +18,11 @@ jobs:
|
|||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
dockerfile: Dockerfile
|
||||
buildargs: VERSION, BRANCH
|
||||
- name: Post Status to Discord
|
||||
uses: sarisia/actions-status-discord@v1
|
||||
if: always()
|
||||
with:
|
||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
status: ${{ job.status }}
|
||||
job: ${{ github.workflow }}
|
||||
nofail: true
|
||||
|
|
8
.github/workflows/publishdocker-release.yml
vendored
8
.github/workflows/publishdocker-release.yml
vendored
|
@ -23,3 +23,11 @@ jobs:
|
|||
dockerfile: Dockerfile
|
||||
buildargs: VERSION, BRANCH
|
||||
tags: ${{ env.RELEASE_VERSION }}
|
||||
- name: Post Status to Discord
|
||||
uses: sarisia/actions-status-discord@v1
|
||||
if: always()
|
||||
with:
|
||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
status: ${{ job.status }}
|
||||
job: ${{ github.workflow }}
|
||||
nofail: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue