We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2550cca commit 5b97660Copy full SHA for 5b97660
.github/workflows/deploy.yml
@@ -32,7 +32,7 @@ jobs:
32
ssh-keyscan -H ${{ secrets.DEPLOYMENT_SERVER }} >> ~/.ssh/known_hosts
33
34
- name: Download build artifacts
35
- # Downloads dist folder
+ # Downloads build folder
36
uses: actions/download-artifact@v4
37
with:
38
name: ${{ vars.PROJECT_NAME }}
.github/workflows/lint-and-build.yml
@@ -67,12 +67,12 @@ jobs:
67
# Builds project
68
run: npm run build --if-present
69
70
- - name: Upload build artifact (dist)
+ - name: Upload build artifact (build)
71
# Uploads build output
72
uses: actions/upload-artifact@v4
73
74
75
- path: dist
+ path: build
76
retention-days: 1
77
78
trigger-deploy:
0 commit comments