-
-
Notifications
You must be signed in to change notification settings - Fork 98
33 lines (31 loc) · 965 Bytes
/
netlify.yml
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
29
30
31
32
33
name: Deploy Demo
on:
push:
branches: [ deploy-netlify ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 20
uses: actions/setup-node@master
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build demo
run: npm run build
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@master
with:
publish-dir: './dist/ngx-scrollbar-demo/browser'
production-branch: deploy-netlify
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: true
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