-
Notifications
You must be signed in to change notification settings - Fork 2
28 lines (26 loc) · 779 Bytes
/
deploy.yml
File metadata and controls
28 lines (26 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# name: Deploy to Netlify
# on:
# push:
# branches:
# - main
# jobs:
# deploy:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Install and Build
# run: |
# yarn install
# yarn run build
# - name: Deploy to Netlify
# uses: nwtgck/actions-netlify@v3.0
# with:
# publish-dir: './build'
# production-deploy: true
# github-token: ${{ secrets.GITHUB_TOKEN }}
# deploy-message: 'Deploy from GitHub Actions'
# enable-pull-request-comment: true
# enable-commit-comment: true
# env:
# NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
# NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}