Skip to content

Merge pull request #60 from yasu551/update-introduction-of-handbook #28

Merge pull request #60 from yasu551/update-introduction-of-handbook

Merge pull request #60 from yasu551/update-introduction-of-handbook #28

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: 18
- 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