-
-
Notifications
You must be signed in to change notification settings - Fork 31
46 lines (37 loc) · 1.01 KB
/
deploy-site.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
name: Deploy website
on:
push:
branches:
- "main"
jobs:
deploy:
name: Deploy website
runs-on: "ubuntu-22.04"
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install asset deps
run: npm install
- name: Build production assets
run: npx tailwind -i assets/css/app.css -o source/assets/css/app.css --minify
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: mbstring, intl, readline
tools: composer:v2
- name: Install PHP deps
uses: ramsey/composer-install@v2
- name: Build production site
run: ./vendor/bin/sculpin generate --env=prod
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output_prod
cname: thephp.foundation