-
Notifications
You must be signed in to change notification settings - Fork 5
93 lines (81 loc) · 3.05 KB
/
website-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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Website Deploy
# Runs on pushed to the default branch but can also be
# run manually from the GitHub Actions page.
on:
push:
branches: [main]
workflow_dispatch:
# Sets permissions of the `GITHUB_TOKEN` to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run
# in-progress and latest queued. However, do NOT cancel in-progress runs as
# we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
#==========================================================================
# Build the Hipcheck site with Zola and the Tailwindcss CLI
#--------------------------------------------------------------------------
website-build:
runs-on: ubuntu-latest
env:
TAILWIND_VERSION: 3.4.4
steps:
# Check out the Hipcheck repository.
- name: Checkout Hipcheck Repository
uses: actions/checkout@v4
# Install the latest version of Zola.
- name: Install Zola
uses: taiki-e/install-action@v2
with:
tool: [email protected]
# Install the latest version of the Tailwind CLI.
- name: Install Tailwind CLI
run: |
curl --proto '=https' --tlsv1.2 -sSLO https://github.com/tailwindlabs/tailwindcss/releases/download/v${TAILWIND_VERSION}/tailwindcss-linux-x64
chmod +x tailwindcss-linux-x64
mv tailwindcss-linux-x64 tailwindcss
mkdir -p "${HOME}/.local/bin"
mv tailwindcss "${HOME}/.local/bin/tailwindcss"
echo "${HOME}/.local/bin" >> $GITHUB_PATH
# Setup GitHub Pages
#
# Specifically, this sets some variables we can use in later steps that
# make life easier, namely:
#
# - `base_url`: The full base URL of the site, to which paths append.
# - `origin`: Just the protocol and domain portion of the `base_url`.
# - `host`: Just the domain portion of the `base_url`.
# - `base_path`: Just the path portion of the `base_url`.
- name: Setup GitHub Pages
id: pages
uses: actions/configure-pages@v5
# Build the actual site with Zola and Tailwind.
- name: Build Hipcheck Website
run: |
cd site
zola build
tailwindcss -i styles/main.css -o public/main.css
# Upload the output of the build as an Actions artifact so the deploy
# step can pick it up and use it.
- name: Upload Build Output
uses: actions/upload-pages-artifact@v3
with:
path: ./site/public
#==========================================================================
# Deploy the site to GitHub Pages
#--------------------------------------------------------------------------
website-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: website-build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4