Skip to content

Commit 5b97660

Browse files
committed
ci: Fix artifact
1 parent 2550cca commit 5b97660

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
ssh-keyscan -H ${{ secrets.DEPLOYMENT_SERVER }} >> ~/.ssh/known_hosts
3333
3434
- name: Download build artifacts
35-
# Downloads dist folder
35+
# Downloads build folder
3636
uses: actions/download-artifact@v4
3737
with:
3838
name: ${{ vars.PROJECT_NAME }}

.github/workflows/lint-and-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ jobs:
6767
# Builds project
6868
run: npm run build --if-present
6969

70-
- name: Upload build artifact (dist)
70+
- name: Upload build artifact (build)
7171
# Uploads build output
7272
uses: actions/upload-artifact@v4
7373
with:
7474
name: ${{ vars.PROJECT_NAME }}
75-
path: dist
75+
path: build
7676
retention-days: 1
7777

7878
trigger-deploy:

0 commit comments

Comments
 (0)