Skip to content

Release Pipeline

Release Pipeline #1

name: Release Pipeline
on:
release:
types: [created]
jobs:
notification:
runs-on: ubuntu-latest-16-core
steps:
- name: Send Slack notification
uses: slackapi/[email protected]
with:
payload: |
{
"repository": "${{ github.repository }}",
"version": "${{ github.ref }}"
}
env:
SLACK_WEBHOOK_URL: ${{ vars.RELEASE_PIPELINE_SLACK_WEBHOOK_URL }}