-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (44 loc) · 1.25 KB
/
contacts-ci-cd.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Contacts CI/CD
on:
push:
paths:
- contacts/**
- .github/workflows/contacts-ci-cd.yml
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20 ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test -w contacts
- run: npm run build
- run: npm run build:pwa -w contacts
- name: Save @pod-os/contacts www
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v3
with:
name: contacts-www
path: |
contacts/www/
contacts/package.json
retention-days: 1
deploy-pod-os-contacts-app:
needs: build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: contacts-www
- name: Deploy PodOS Contacts
run: npx netlify-cli deploy --site=pod-os-contacts --dir=www --prod
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_POD_OS_CONTACTS_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}