Skip to content

Merge pull request #22 from tomrpl/feat/env #55

Merge pull request #22 from tomrpl/feat/env

Merge pull request #22 from tomrpl/feat/env #55

Workflow file for this run

# name: Build and Deploy to Netlify
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
# jobs:
# build:
# name: Build and Deploy
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# node-version: "22.3.0" # Use the Node.js version specified in your project
# - name: Install dependencies
# run: yarn install
# - name: Build project
# run: netlify build # Check netilify doc
# - name: Deploy to Netlify
# run: npx netlify deploy --dir=build --prod
# env:
# NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
# NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}