Skip to content

Commit ff53407

Browse files
authored
ci: merge release notification action (#33)
1 parent 740db7b commit ff53407

File tree

2 files changed

+12
-19
lines changed

2 files changed

+12
-19
lines changed

.github/workflows/publish-gem.yml

+12
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424

2525
steps:
2626
- uses: actions/checkout@v3
27+
2728
- name: Set up Ruby 3.2
2829
uses: ruby/setup-ruby@v1
2930
with:
@@ -41,6 +42,7 @@ jobs:
4142
gem push *.gem
4243
env:
4344
GEM_HOST_API_KEY: "${{ secrets.RUBY_GEMS_TOKEN }}"
45+
4446
- name: Create tag
4547
if: steps.release.outputs.exit_code == 0
4648
id: tag_version
@@ -49,10 +51,20 @@ jobs:
4951
github_token: ${{ secrets.TAGS_TOKEN }}
5052
custom_tag: ${{ github.event.inputs.Version }}
5153
tag_prefix: ""
54+
5255
- name: Create changelog for the release
5356
if: steps.release.outputs.exit_code == 0
5457
uses: ncipollo/release-action@v1
5558
with:
5659
tag: ${{ steps.tag_version.outputs.new_tag }}
5760
name: Release Version ${{ github.event.inputs.Version }}
5861
body: ${{ steps.tag_version.outputs.changelog }}
62+
63+
- name: Send slack notification
64+
id: slack
65+
uses: slackapi/[email protected]
66+
with:
67+
channel-id: 'C012YFE3D6D'
68+
slack-message: "core-lib-ruby release has been triggered!"
69+
env:
70+
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}

.github/workflows/release-notification.yml

-19
This file was deleted.

0 commit comments

Comments
 (0)