Skip to content

Commit

Permalink
ci: add release pipeline workflow (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan authored Jun 14, 2023
1 parent 489e272 commit fbb736c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release Pipeline

on:
release:
types: [created]

jobs:
notification:
runs-on: ubuntu-latest
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 }}

0 comments on commit fbb736c

Please sign in to comment.