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.
2 parents cb88fb6 + 01b4a3a commit 62e5c61Copy full SHA for 62e5c61
.github/workflows/publish.yml
@@ -126,3 +126,13 @@ jobs:
126
with:
127
repository-url: https://test.pypi.org/legacy/
128
packages-dir: ./dist
129
+
130
+ notify:
131
+ runs-on: ubuntu-latest
132
+ needs: publish
133
+ if: ${{ needs.publish.result == 'success' && inputs.IS_PRE_RELEASE == false }}
134
+ steps:
135
+ - name: notify slack
136
+ run: |
137
+ export DATA="{\"text\":\"Release notification - nextplot ${{ inputs.VERSION }} (see <https://github.com/nextmv-io/nextplot/releases/${{ inputs.VERSION }}|release notes> / <https://pypi.org/project/nextplot|PyPI>)\"}"
138
+ curl -X POST -H 'Content-type: application/json' --data "$DATA" ${{ secrets.SLACK_URL_MISSION_CONTROL }}
0 commit comments