Skip to content

Commit f1a4137

Browse files
ci: fix deploy to kise job
1 parent 80f723c commit f1a4137

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ jobs:
2424
run: yarn build
2525

2626
- name: Upload Build Artifact
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: build-files
30+
path: build
31+
32+
- name: Upload Pages Artifact
2733
uses: actions/upload-pages-artifact@v3
2834
with:
2935
path: build
@@ -52,6 +58,12 @@ jobs:
5258

5359
runs-on: ubuntu-latest
5460
steps:
61+
- name: Download Build Artifact
62+
uses: actions/download-artifact@v4
63+
with:
64+
name: build-files
65+
path: build
66+
5567
- name: Sync to S3
5668
run: |
5769
aws s3 sync ./build s3://${{ secrets.KISE_BUCKET }} \

0 commit comments

Comments
 (0)