-
Notifications
You must be signed in to change notification settings - Fork 9
61 lines (57 loc) · 1.63 KB
/
dev-deployment.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
50
51
52
53
54
55
56
57
58
59
60
61
name: Test/Deploy dev
on:
push:
branches: ['development']
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- name: Eslint check
run: yarn run lint
deploy-docs:
needs: build-test
runs-on: ubuntu-latest
steps:
- name: Trigger Developer Event
uses: peter-evans/repository-dispatch@main
with:
token: ${{ secrets.DOCS_REFRESH_TOKEN }}
repository: neo4j-documentation/docs-refresh
event-type: labs
build-s3:
needs: build-test
runs-on: ubuntu-latest
environment:
name: development
url: https://development.needle-starterkit.graphapp.io/
strategy:
matrix:
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: rm -rf docs
- run: yarn
- run: yarn run build
- uses: kersvers/[email protected]
with:
args: --delete
env:
AWS_ACCESS_KEY_ID: ${{ vars.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_S3_BUCKET: ${{ vars.AWS_S3_BUCKET }}
DISTRIBUTION_ID: ${{ vars.AWS_CDN_ID }}
AWS_REGION: 'us-east-1'
SOURCE_DIR: 'dist'