Skip to content

Commit 05a9601

Browse files
committed
Pass Node 24 override to Pages steps
1 parent cc8ac52 commit 05a9601

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/pages.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
env:
10-
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
10+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
1111

1212
permissions:
1313
contents: read
@@ -23,6 +23,8 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/configure-pages@v5
26+
env:
27+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
2628

2729
- name: Prepare site
2830
shell: bash
@@ -55,6 +57,8 @@ jobs:
5557
touch site/.nojekyll
5658
5759
- uses: actions/upload-pages-artifact@v4
60+
env:
61+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
5862
with:
5963
path: site
6064

@@ -67,3 +71,5 @@ jobs:
6771
steps:
6872
- id: deployment
6973
uses: actions/deploy-pages@v4
74+
env:
75+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'

0 commit comments

Comments
 (0)