-
Notifications
You must be signed in to change notification settings - Fork 180
75 lines (64 loc) · 1.86 KB
/
build-deploy.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
72
73
74
75
name: Build and Deploy
on:
push:
branches:
- master
paths:
- 'assets/**'
- 'content/**'
- 'data/*.json'
- 'layouts/**'
- 'config.*.yml'
- 'composer.json'
- 'package.json'
- '.github/workflows/build-deploy.yml'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Get composer cache directory
id: composer-cache
run: |
echo "cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer downloads 💾
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.cache_dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.*') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Cache PHP dependencies 💾
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.OS }}-build-${{ hashFiles('**/composer.*') }}
- name: Setup PHP with intl 🏗
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: intl-69.1
- name: Install composer dependencies 🏗
shell: bash
run: |
composer install
- name: Install node dependencies 🏗
shell: bash
run: |
yarn install
- name: Build 🔧
shell: bash
run: |
make production
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_CONFIG_NAME: github-actions[bot]
GIT_CONFIG_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
BRANCH: gh-pages
FOLDER: public
CLEAN: true