[ci] add trigger redeploy job
This commit is contained in:
parent
7e246df079
commit
50be56a2bd
1 changed files with 10 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
upload-one:
|
||||
build-uberjar:
|
||||
container:
|
||||
image: docker.io/southfox09/cl-builder:latest
|
||||
|
||||
|
@ -43,3 +43,12 @@ jobs:
|
|||
with:
|
||||
name: uberjar
|
||||
path: target/*-standalone.jar
|
||||
|
||||
trigger-redeploy:
|
||||
needs: [build-uberjar]
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/webhook@master
|
||||
with:
|
||||
url: ${{ secrets.WEBHOOK_URL }}
|
||||
body: '{ "run_number": ${{ env.GITHUB_RUN_NUMBER }} }'
|
||||
|
|
Loading…
Reference in a new issue