Skip to content

Commit b6d7d3a

Browse files
Update release-assets.yml
1 parent a76c235 commit b6d7d3a

File tree

1 file changed

+27
-6
lines changed

1 file changed

+27
-6
lines changed
Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,32 @@
1-
name: Repro release-assets redirect
2-
on: [workflow_dispatch]
1+
name: Node Redirect Repro
2+
on: workflow_dispatch
33

44
jobs:
5-
test:
5+
test-redirect:
66
runs-on: ubuntu-latest
7+
env:
8+
ACTIONS_STEP_DEBUG: true
9+
ACTIONS_RUNNER_DEBUG: true
10+
NODETOOL_VERBOSE: true
11+
712
steps:
8-
- name: Setup Node
9-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
13+
- uses: actions/checkout@v4
14+
15+
- name: Debug info
16+
run: |
17+
echo "Starting redirect reproduction test"
18+
echo "Date: $(date)"
19+
echo "Cache-bust token: $(date +%s)"
20+
21+
- name: Setup Node (force CDN fresh fetch)
22+
uses: actions/setup-node@v4
1023
with:
11-
node-version: '21'
24+
node-version: "20.16.0?cache=$(date +%s)"
25+
26+
- name: Confirm install
27+
run: |
28+
node -v
29+
which node
30+
31+
- name: Complete
32+
run: echo "Finished test"

0 commit comments

Comments
 (0)