Skip to content

Commit 9a19b71

Browse files
feat(actions): Add publish notification to build runner
1 parent 9c09cf9 commit 9a19b71

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,10 @@ jobs:
3333
path: dist
3434
- id: deployment
3535
uses: actions/deploy-pages@v4
36+
notification:
37+
runs-on: ubuntu-latest
38+
needs: [build-and-deploy]
39+
steps:
40+
- name: Notify
41+
run: |
42+
curl --request POST --url ${{ secrets.DEPLOY_HOOK }} --header 'content-type: application/json' --data '${{ secrets.DEPLOY_MSG }}'

0 commit comments

Comments
 (0)