Skip to content

Commit 7ad02e4

Browse files
committed
fix(ci): bump publish node-version to 24, add setup-node to release-notes, handle cancelled in notify
1 parent fc1101d commit 7ad02e4

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ jobs:
106106
with:
107107
fetch-depth: 0
108108

109+
- name: ⎔ Setup Node.js
110+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
111+
with:
112+
node-version: 24
113+
109114
- name: 📝 Update Changelog
110115
run: npx changelogithub
111116
env:
@@ -119,6 +124,6 @@ jobs:
119124
- name: 📣 Notify release result
120125
uses: marimo-team/internal-gh-actions/release-notification@ba06d4db1f3c5c9b86983ce409e57196f8376777 # main
121126
with:
122-
status: ${{ contains(needs.*.result, 'failure') && 'failure' || 'success' }}
127+
status: ${{ (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) && 'failure' || 'success' }}
123128
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL_RELEASES }}
124129
artifact-url: "https://npmjs.com/package/@marimo-team/codemirror-sql"

0 commit comments

Comments
 (0)