Skip to content

Commit 9ddf73b

Browse files
committed
ci: Fix notification workflow
1 parent 4ceec1a commit 9ddf73b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/notify-unreleased-commits.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- name: List Commits
1515
id: list-commits
1616
run: |
17-
OUTPUT="$(./scripts/list-unreleased-commits.sh)"
18-
echo "::set-output name=summary::${OUTPUT}"
17+
SUMMARY="$(./scripts/list-unreleased-commits.sh)"
18+
echo "summary=$SUMMARY" >> $GITHUB_OUTPUT
1919
2020
- name: Discord notification
2121
uses: Ilshidur/action-discord@d2594079a10f1d6739ee50a2471f0ca57418b554
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
args: |
2626
```
27-
{{ steps.list-commits.outputs.summary }}
27+
${{ steps.list-commits.outputs.summary }}
2828
```
2929
3030
If a package needs released, please [run the workflow](https://github.com/wxt-dev/wxt/actions/workflows/release.yml).

0 commit comments

Comments
 (0)