We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4050f2a commit 0b5d8c3Copy full SHA for 0b5d8c3
.github/workflows/publish-pypi.yml
@@ -29,3 +29,15 @@ jobs:
29
bash ./bin/publish-pypi
30
env:
31
PYPI_TOKEN: ${{ secrets.PREM_AI_PYPI_TOKEN || secrets.PYPI_TOKEN }}
32
+
33
+ - name: Notify Slack on Release Success
34
+ if: success()
35
+ shell: bash
36
+ run: |
37
+ curl -X POST --data '{"text":"✅ Studio PyPI SDK Deployed Successfully"}' ${{ secrets.SLACK_DEV_PLATFORM_WEBHOOK_URL }}
38
39
+ - name: Notify Slack on Release Failure
40
+ if: failure()
41
42
43
+ curl -X POST --data '{"text":"❌ Studio PyPI SDK Deployed Failed"}' ${{ secrets.SLACK_DEV_PLATFORM_WEBHOOK_URL }}
0 commit comments