Skip to content

Commit

Permalink
Deploy website to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jbruechert committed Mar 17, 2024
1 parent 2f852bf commit 719882a
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 92 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/data-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,40 +76,3 @@ jobs:
-e 'ssh -i ./deploy_key -p 22 -o StrictHostKeyChecking=no' \
out/ [email protected]:
rm deploy_key
deploy_updated_mkdocs_site:
runs-on: ubuntu-latest
needs: import
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: 3.x

- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV

- name: Restore cached licenses.md
uses: actions/cache/restore@v4
with:
path: |
mkdocs-site/docs/licenses.md
key: licenses-
restore-keys: |
licenses-
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs
- run: mkdocs gh-deploy -f mkdocs-site/mkdocs.yml --force
54 changes: 0 additions & 54 deletions .github/workflows/mkdocs-deploy.yml

This file was deleted.

92 changes: 92 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# SPDX-FileCopyrightText: 2024 Jonah Brüchert <[email protected]>
# SPDX-License-Identifier: CC0-1.0

name: Deploy Hugo site to Pages

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

defaults:
run:
shell: bash

jobs:
build:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.124.0
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Setup Pages
id: pages
uses: actions/configure-pages@v4

- name: Install Node.js dependencies
run: cd website && npm install

- uses: actions/setup-python@v5
with:
python-version: 3.x

- name: Restore cached licenses.md
uses: actions/cache/restore@v4
with:
path: |
mkdocs-site/docs/licenses.md
key: licenses-
restore-keys: |
licenses-
- run: pip install mkdocs
- run: mkdocs build --site-dir ../website/static/doc/ -f mkdocs-site/mkdocs.yml

- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
cd website && npm run release
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./website/public

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"start": "spago build && esbuild ./output/Main/index.js --bundle --outfile=static/index.js --global-name=Main && hugo server",
"release-start": "spago -x release.dhall build && esbuild ./output-es/Main/index.js --bundle --minify --outfile=static/index.js --global-name=Main && hugo --minify server",
"release": "spago -x release.dhall build && esbuild ./output-es/Main/index.js --bundle --minify --outfile=static/index.js --global-name=Main && hugo --minify"
"release": "spago -x release.dhall build && esbuild ./output-es/Main/index.js --bundle --minify --outfile=static/index.js --global-name=Main && hugo --minify --baseURL https://transitous.org/"
},
"dependencies": {
"esbuild": "^0.20.1",
Expand Down

0 comments on commit 719882a

Please sign in to comment.