This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
85 lines (66 loc) · 1.95 KB
/
main.yaml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: CI
on:
push:
branches: [master]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run lint:ci
build:
needs: [lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run generate
- uses: actions/upload-artifact@v2
with:
name: cryptic-website
path: dist
deploy:
needs: [ build ]
if: format('refs/heads/{0}', github.event.repository.default_branch) == github.ref
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: themorpheustutorials/webspace
ssh-key: ${{ secrets.DEPLOY_SSH_KEY }}
- uses: actions/download-artifact@v3
with:
name: cryptic-website
path: __dist
- name: Deploy Repository
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6
with:
repository-name: themorpheustutorials/webspace
branch: main
folder: __dist
clean: true
target-folder: www/net.cryptic-game
ssh-key: ${{ secrets.DEPLOY_SSH_KEY }}
commit-message: Deployed ${{ github.repository }}
git-config-name: GitHub
git-config-email: 41898282+github-actions[bot]@users.noreply.github.com