Skip to content

Commit 89d26be

Browse files
authored
fix(ci): correct RVI20 CRD artifact names in GitHub Pages deployment workflow (#1242)
The GitHub pages deployment workflow was failing due to missing RVI20 CRD artifacts. This updates the names in `.github/workflows/pages.yml` (download artifacts) to be lowercase so they match with those in `.github/workflows/deploy.yml` (upload artifacts). fixes #1241
1 parent 04c2909 commit 89d26be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,14 @@ jobs:
151151
- name: Download RVI20-32-CRD
152152
uses: actions/download-artifact@v5
153153
with:
154-
name: RVI20-32-crd
154+
name: rvi20-32-crd
155155
path: _site/pdfs
156156
github-token: ${{ secrets.GITHUB_TOKEN }}
157157
run-id: ${{ github.event.workflow_run.id }}
158158
- name: Download RVI20-64-CRD
159159
uses: actions/download-artifact@v5
160160
with:
161-
name: RVI20-64-crd
161+
name: rvi20-64-crd
162162
path: _site/pdfs
163163
github-token: ${{ secrets.GITHUB_TOKEN }}
164164
run-id: ${{ github.event.workflow_run.id }}

0 commit comments

Comments
 (0)