Skip to content

Commit fad788d

Browse files
committed
Fix Slack Action
1 parent adba85e commit fad788d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
with:
3333
run_install: true
3434

35+
- run: |
36+
cd packages/bento-design-system
37+
pnpm version --no-git-tag-version --new-version ${{ github.ref_name }}
38+
3539
- name: Commit & Push changes
3640
uses: actions-js/push@master
3741
with:
@@ -61,6 +65,7 @@ jobs:
6165
if: ${{ job.status == 'success' }}
6266
env:
6367
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
68+
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
6469
JOB_STATUS: ${{ job.status }}
6570
ATTACHMENT_COLOR: "good"
6671
with:
@@ -71,6 +76,7 @@ jobs:
7176
if: ${{ job.status == 'failure' }}
7277
env:
7378
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
79+
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
7480
JOB_STATUS: ${{ job.status }}
7581
ATTACHMENT_COLOR: "danger"
7682
with:

0 commit comments

Comments
 (0)