-
Notifications
You must be signed in to change notification settings - Fork 6
71 lines (68 loc) · 2.7 KB
/
deployfe.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
62
63
64
65
66
67
68
69
70
71
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Deploy to Github Pages
on:
schedule:
- cron: '0 8,12,16,20 * * *'
push:
branches: [ main ]
paths:
- 'data/**'
- 'raw/**'
- scripts/**
- 'viewer/**'
- 'package.json'
pull_request:
branches: [ main ]
jobs:
pack-and-deploy-to-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Set Env
if : github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'fetch')
run: |
touch .env
echo APP_KEY=${{ secrets.APP_KEY }} >> .env
echo APP_SECRET=${{ secrets.APP_SECRET }} >> .env
echo DROPBOX=${{ secrets.DROPBOX }} >> .env
- name: Install Packages
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Fetch Logos
if : github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'fetch')
run: pnpm run fetch
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
id: auto-commit-action
if : github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'fetch')
with:
commit_message: Fetch Logos from Dropbox
commit_options: '--no-verify --signoff'
- name: Build Package
run: pnpm run package
- name: "Run if changes have been detected"
id: add-changeset
if: steps.auto-commit-action.outputs.changes_detected == 'true'
run: pnpm run auto-release
- name: Add changeset
uses: stefanzweifel/git-auto-commit-action@v5
if : steps.auto-commit-action.outputs.changes_detected == 'true'
with:
commit_message: Added changeset
commit_options: '--no-verify --signoff'
- name: Install Frontend Packages
if : github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'deploy')
run: pnpm install
- name: Build Frontend
if : github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'deploy')
run: pnpm --filter "viewer" build
- name: Deploy to Github Pages
if : github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'deploy')
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: ./viewer/build