Skip to content

Commit bd0e5e5

Browse files
authored
fix(ci): get correct run id for deploy -> pages communication (#1000)
1 parent b09c215 commit bd0e5e5

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

.github/workflows/pages.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -32,132 +32,132 @@ jobs:
3232
- name: Download reuse BOM
3333
uses: actions/download-artifact@v5
3434
with:
35-
name: reuse-manifest-${{ github.event.workflow_run.run_number }}
35+
name: reuse-manifest-${{ github.event.workflow_run.id }}
3636
path: _site/reuse_bom.txt
3737
- name: Download resolved spec
3838
uses: actions/download-artifact@v5
3939
with:
40-
name: resolved-spec-${{ github.event.workflow_run.run_number }}
40+
name: resolved-spec-${{ github.event.workflow_run.id }}
4141
path: _site/resolved_spec
4242
- name: Download UDB API Docs
4343
uses: actions/download-artifact@v5
4444
with:
45-
name: udb-api-${{ github.event.workflow_run.run_number }}
45+
name: udb-api-${{ github.event.workflow_run.id }}
4646
path: _site/htmls/udb_api_doc
4747
- name: Download ISA Explorer CSR
4848
uses: actions/download-artifact@v5
4949
with:
50-
name: isa_explorer-csr-${{ github.event.workflow_run.run_number }}
50+
name: isa_explorer-csr-${{ github.event.workflow_run.id }}
5151
path: _site/isa_explorer
5252
- name: Download ISA Explorer Extension
5353
uses: actions/download-artifact@v5
5454
with:
55-
name: isa_explorer-ext-${{ github.event.workflow_run.run_number }}
55+
name: isa_explorer-ext-${{ github.event.workflow_run.id }}
5656
path: _site/isa_explorer
5757
- name: Download ISA Explorer Inst
5858
uses: actions/download-artifact@v5
5959
with:
60-
name: isa_explorer-inst-${{ github.event.workflow_run.run_number }}
60+
name: isa_explorer-inst-${{ github.event.workflow_run.id }}
6161
path: _site/isa_explorer
6262
- name: Download ISA Explorer Spreadsheet
6363
uses: actions/download-artifact@v5
6464
with:
65-
name: isa_explorer-spreadsheet-${{ github.event.workflow_run.run_number }}
65+
name: isa_explorer-spreadsheet-${{ github.event.workflow_run.id }}
6666
path: _site/isa_explorer
6767
- name: Download HTML ISA Manual
6868
uses: actions/download-artifact@v5
6969
with:
70-
name: isa-html-manual-${{ github.event.workflow_run.run_number }}
70+
name: isa-html-manual-${{ github.event.workflow_run.id }}
7171
path: _site/manual
7272
- name: Download HTML ISA Manual
7373
uses: actions/download-artifact@v5
7474
with:
75-
name: cfg-html-manual-${{ github.event.workflow_run.run_number }}
75+
name: cfg-html-manual-${{ github.event.workflow_run.id }}
7676
path: _site/example_cfg
7777
- name: Download Instruction Appendix
7878
uses: actions/download-artifact@v5
7979
with:
80-
name: inst-appendix-${{ github.event.workflow_run.run_number }}
80+
name: inst-appendix-${{ github.event.workflow_run.id }}
8181
path: _site/pdfs
8282
- name: Download RVI20
8383
uses: actions/download-artifact@v5
8484
with:
85-
name: rvi20-${{ github.event.workflow_run.run_number }}
85+
name: rvi20-${{ github.event.workflow_run.id }}
8686
path: _site/pdfs
8787
- name: Download RVA20
8888
uses: actions/download-artifact@v5
8989
with:
90-
name: rva20-${{ github.event.workflow_run.run_number }}
90+
name: rva20-${{ github.event.workflow_run.id }}
9191
path: _site/pdfs
9292
- name: Download RVA22
9393
uses: actions/download-artifact@v5
9494
with:
95-
name: rva22-${{ github.event.workflow_run.run_number }}
95+
name: rva22-${{ github.event.workflow_run.id }}
9696
path: _site/pdfs
9797
- name: Download RVA23
9898
uses: actions/download-artifact@v5
9999
with:
100-
name: rva23-${{ github.event.workflow_run.run_number }}
100+
name: rva23-${{ github.event.workflow_run.id }}
101101
path: _site/pdfs
102102
- name: Download RVB23
103103
uses: actions/download-artifact@v5
104104
with:
105-
name: rvb23-${{ github.event.workflow_run.run_number }}
105+
name: rvb23-${{ github.event.workflow_run.id }}
106106
path: _site/pdfs
107107
- name: Download AC100
108108
uses: actions/download-artifact@v5
109109
with:
110-
name: ac100-crd-${{ github.event.workflow_run.run_number }}
110+
name: ac100-crd-${{ github.event.workflow_run.id }}
111111
path: _site/pdfs
112112
- name: Download AC200
113113
uses: actions/download-artifact@v5
114114
with:
115-
name: ac200-crd-${{ github.event.workflow_run.run_number }}
115+
name: ac200-crd-${{ github.event.workflow_run.id }}
116116
path: _site/pdfs
117117
- name: Download MC100-32
118118
uses: actions/download-artifact@v5
119119
with:
120-
name: mc100-32-crd-${{ github.event.workflow_run.run_number }}
120+
name: mc100-32-crd-${{ github.event.workflow_run.id }}
121121
path: _site/pdfs
122122
- name: Download MC100-64
123123
uses: actions/download-artifact@v5
124124
with:
125-
name: mc100-64-crd-${{ github.event.workflow_run.run_number }}
125+
name: mc100-64-crd-${{ github.event.workflow_run.id }}
126126
path: _site/pdfs
127127
- name: Download MC200-32
128128
uses: actions/download-artifact@v5
129129
with:
130-
name: mc200-32-crd-${{ github.event.workflow_run.run_number }}
130+
name: mc200-32-crd-${{ github.event.workflow_run.id }}
131131
path: _site/pdfs
132132
- name: Download MC200-64
133133
uses: actions/download-artifact@v5
134134
with:
135-
name: mc200-64-crd-${{ github.event.workflow_run.run_number }}
135+
name: mc200-64-crd-${{ github.event.workflow_run.id }}
136136
path: _site/pdfs
137137
- name: Download MC300-32
138138
uses: actions/download-artifact@v5
139139
with:
140-
name: mc300-32-crd-${{ github.event.workflow_run.run_number }}
140+
name: mc300-32-crd-${{ github.event.workflow_run.id }}
141141
path: _site/pdfs
142142
- name: Download MC300-64
143143
uses: actions/download-artifact@v5
144144
with:
145-
name: mc300-64-crd-${{ github.event.workflow_run.run_number }}
145+
name: mc300-64-crd-${{ github.event.workflow_run.id }}
146146
path: _site/pdfs
147147
- name: Download RVI20-32 CTP
148148
uses: actions/download-artifact@v5
149149
with:
150-
name: rvi20-32-ctp-${{ github.event.workflow_run.run_number }}
150+
name: rvi20-32-ctp-${{ github.event.workflow_run.id }}
151151
path: _site/pdfs
152152
- name: Download RVI20-64 CTP
153153
uses: actions/download-artifact@v5
154154
with:
155-
name: rvi20-64-ctp-${{ github.event.workflow_run.run_number }}
155+
name: rvi20-64-ctp-${{ github.event.workflow_run.id }}
156156
path: _site/pdfs
157157
- name: Download MC100-32 CTP
158158
uses: actions/download-artifact@v5
159159
with:
160-
name: mc100-32-ctp-${{ github.event.workflow_run.run_number }}
160+
name: mc100-32-ctp-${{ github.event.workflow_run.id }}
161161
path: _site/pdfs
162162
- name: Create index
163163
env:

0 commit comments

Comments
 (0)