Skip to content

Release: Netlify_2025-12-25.02 (#12) #2

Release: Netlify_2025-12-25.02 (#12)

Release: Netlify_2025-12-25.02 (#12) #2

name: Build and Deploy to Netlify
on:
push:
branches:
- main
jobs:
call-test:
uses: ./.github/workflows/test.yml
deploy:
runs-on: ubuntu-latest
needs: [call-test]
environment: netlify
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install and Build
run: |
npm ci
npm run build
- name: Deploy to Netlify
run: npx netlify-cli deploy --dir=dist --prod
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}