-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (69 loc) · 2.63 KB
/
jekyll.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
name: Deploy Jekyll site to Pages
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Let user select which site to build on input
inputs:
sourceSite:
description: "Source site to build"
required: true
type: choice
options:
- pp
- gbl
env:
REGISTRY: ghcr.io
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
packages: read
# 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 job
build:
runs-on: ubuntu-latest
steps:
# Checkout Markdown code & assets for compiling with Jekyll
- name: Checkout
uses: actions/checkout@v4
with:
repository: gwu-libraries/jekyll-journals
ref: pp-v31
# Using SSH to authenticate with this private repo
ssh-key: ${{ secrets.JEKYLL_JOURNALS_REPO_KEY }}
# Uses the `docker/login-action` action to log in to the Container registry registry.
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build site inside Docker container
run: |
mkdir ${{ github.workspace }}/builds
sudo chown -R 1000 ${{ github.workspace }}/builds
docker run --volume="${{ github.workspace }}/builds:/srv/dest" --volume="${{ github.workspace }}/${{ inputs.sourceSite }}:/srv/source" --volume="jekyll-cache:/srv/source/.jekyll-cache" -e JEKYLL_ENV=production ghcr.io/gwu-libraries/jekyll-journals-builder:pp-v31 jekyll build --trace -s /srv/source -d /srv/dest
sudo cp ${{ github.workspace }}/builds/issues/volume_31.html ${{ github.workspace }}/builds/index.html
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3
with:
# Set the path to the output of the previous step
path: ${{ github.workspace }}/builds
# Deployment job
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