Skip to content

Release: Netlify_2025-12-31.01 (#37) #9

Release: Netlify_2025-12-31.01 (#37)

Release: Netlify_2025-12-31.01 (#37) #9

name: Production → Netlify
on:
push:
branches:
- main
concurrency:
group: netlify-production
cancel-in-progress: false
jobs:
call-test:
uses: ./.github/workflows/test.yml
call-lint:
uses: ./.github/workflows/lint.yml
permissions:
contents: read
deploy:
runs-on: ubuntu-latest
needs: [call-test, call-lint]
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 }}