We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67898d7 commit c9e6883Copy full SHA for c9e6883
.github/workflows/changelog-preview.yml
@@ -9,7 +9,14 @@ on:
9
jobs:
10
generate_changelog_preview:
11
runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ node-version: [ 24.x ]
15
steps:
16
+ - name: Use Node.js ${{ matrix.node-version }}
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
- uses: actions/checkout@v2
21
with:
22
ref: develop
@@ -45,7 +52,7 @@ jobs:
45
52
46
53
echo "Changelog file ready! Setting up outputs"
47
54
CHANGELOG_PREVIEW=$(cat NEXT_RELEASE_CHANGELOG.md)
48
-
55
+
49
56
CHANGELOG_PREVIEW_ESCAPED="${CHANGELOG_PREVIEW//'%'/'%25'}"
50
57
CHANGELOG_PREVIEW_ESCAPED="${CHANGELOG_PREVIEW_ESCAPED//$'\n'/'%0A'}"
51
58
CHANGELOG_PREVIEW_ESCAPED="${CHANGELOG_PREVIEW_ESCAPED//$'\r'/'%0D'}"
0 commit comments