mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-03-30 09:25:16 +00:00
22 lines
654 B
YAML
22 lines
654 B
YAML
name: github-pages
|
|
on:
|
|
push:
|
|
branches: main
|
|
jobs:
|
|
main:
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
environment: github-pages
|
|
runs-on: ubuntu-latest
|
|
container: alpine@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- name: Build
|
|
run: |
|
|
apk add mdbook tar
|
|
mdbook build
|
|
- uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
|
|
with:
|
|
path: book
|
|
- uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
|