-
Notifications
You must be signed in to change notification settings - Fork 127
35 lines (33 loc) · 1 KB
/
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
34
35
name: Deploy Demo
on:
push:
branches: [ deploy-netlify ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 20
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build library
run: npm run build-lib
- name: Build demo
run: npm run build-demo
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v1.1.11
with:
publish-dir: './dist/ngx-sharebuttons-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