Skip to content

Commit 65fef83

Browse files
committed
Back to the discord error message
1 parent 8c760ae commit 65fef83

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/build-and-release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,7 @@ jobs:
127127
uses: tsickert/[email protected]
128128
with:
129129
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
130-
embed-title: |
131-
🎉 New update on `master` branch: ${{ fromJson(steps.get_pr_data.outputs.result).title }}
132-
embed-description: |
133-
${{ fromJson(steps.get_pr_data.outputs.result).body }}
134-
embed-url: ${{ fromJson(steps.get_pr_data.outputs.result).html_url }}
130+
embed-title: '🎉 New update on `master` branch: ${{ fromJson(steps.get_pr_data.outputs.result).title }}'
131+
embed-description: '${{ fromJson(steps.get_pr_data.outputs.result).body }}'
132+
embed-url: '${{ fromJson(steps.get_pr_data.outputs.result).html_url }}'
135133

.github/workflows/docker-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ on:
88
branches:
99
- master
1010
tags:
11-
- 'v*'
12-
- 'release-*'
11+
- 'v*.*.*'
1312
pull_request:
1413
branches:
1514
- master
@@ -19,6 +18,7 @@ env:
1918
REGISTRY: ghcr.io
2019
# github.repository as <account>/<repo>
2120
IMAGE_NAME: ${{ github.repository }}
21+
RELEASE_VERSION: ${{ github.ref_name }}
2222

2323
jobs:
2424
package:

0 commit comments

Comments
 (0)