Skip to content

🚨 Fix: 명상 끝내기 액션 개선 #4

🚨 Fix: 명상 끝내기 액션 개선

🚨 Fix: 명상 끝내기 액션 개선 #4

# .github/workflows/netlify.yml
name: Build and Deploy to Netlify
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Build Nirvana App
uses: actions/setup-node@v2
with:
node-version: '18'
- run: npm i
- run: npm build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: './dist'
production-branch: master
github-token: ${{ secrets.GH_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1