We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1166263 commit 3f5c114Copy full SHA for 3f5c114
1 file changed
.github/workflows/netlify-deploy.yml
@@ -15,18 +15,19 @@ jobs:
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v4
18
+
19
- name: Setup Node
20
uses: actions/setup-node@v4
21
with:
22
node-version: "24"
23
24
- name: Install and Build
25
run: |
26
npm ci
27
npm run build
28
29
- name: Deploy to Netlify
- uses: netlify/actions/cli@master
30
+ run: npx netlify-cli deploy --dir=dist --prod
31
env:
32
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
33
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
- with:
- args: deploy --dir=dist --prod
0 commit comments