-
Notifications
You must be signed in to change notification settings - Fork 8
57 lines (56 loc) · 1.39 KB
/
eleventy_publish.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
name: Eleventy Publish
on:
push:
branches:
- main
workflow_dispatch:
inputs:
confirmation:
description: 'Are you sure you want to run the publish process manually?'
required: true
type: boolean
jobs:
build:
runs-on: ubuntu-latest
env:
ARTIFACT_PATH: '_site/'
ARTIFACT_NAME: 'github-pages'
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: latest
- run: npm ci
- run: npm run publish
- name: Archive artifact
shell: sh
if: runner.os == 'Linux'
run: |
export -p
tar \
--dereference --hard-dereference \
--directory "$ARTIFACT_PATH" \
-cvf "$RUNNER_TEMP/artifact.tar" \
--exclude=.git \
--exclude=.github \
.
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_PATH }}
if-no-files-found: error
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4