Skip to content

Commit 8aa56d9

Browse files
committed
ci: fix download certificates
1 parent 30111be commit 8aa56d9

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

.github/actions/local-network/action.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ runs:
1515
uses: actions/download-artifact@v4
1616
with:
1717
name: js-build-${{ github.sha }}
18+
path: packages
1819

1920
- name: Unpack JS build artifacts archive
2021
shell: bash

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ jobs:
250250
uses: actions/download-artifact@v4
251251
with:
252252
name: js-build-${{ github.sha }}
253+
path: packages
253254

254255
- name: Install macOS build deps
255256
if: runner.os == 'macOS'

.github/workflows/tests-build-js.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,5 +94,6 @@ jobs:
9494
path: ${{ steps.diff.outputs.files }}
9595
retention-days: 1
9696
if-no-files-found: error
97+
include-hidden-files: true
9798
if: ${{ steps.check-artifact.outputs.exists != 'true' }}
9899

.github/workflows/tests-codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
uses: actions/download-artifact@v4
3535
with:
3636
name: js-build-${{ github.sha }}
37+
path: packages
3738

3839
- name: Initialize CodeQL
3940
uses: github/codeql-action/init@v2

.github/workflows/tests-dashmate.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
uses: actions/download-artifact@v4
4646
with:
4747
name: js-build-${{ github.sha }}
48+
path: packages
4849

4950
- name: Replace with pre-built images
5051
run: |

.github/workflows/tests-js-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
uses: actions/download-artifact@v4
4040
with:
4141
name: js-build-${{ github.sha }}
42+
path: packages
4243

4344
- name: Run ESLinter
4445
run: yarn workspace "${{ inputs.package }}" lint
@@ -70,6 +71,7 @@ jobs:
7071
uses: actions/download-artifact@v4
7172
with:
7273
name: js-build-${{ github.sha }}
74+
path: packages
7375

7476
- name: Create necessary dotenv files
7577
run: |

0 commit comments

Comments
 (0)