Skip to content

Bump anyhow from 1.0.79 to 1.0.80 (#187) #192

Bump anyhow from 1.0.79 to 1.0.80 (#187)

Bump anyhow from 1.0.79 to 1.0.80 (#187) #192

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Shun Sakai
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
name: Deployment
on:
pull_request:
push:
branches:
- "develop"
tags:
- "*-v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: |
npm ci
npx antora -v
- name: Setup just
uses: extractions/setup-just@v1
- name: Build a book
run: just build-book
- name: Minify a book
uses: docker://tdewolff/minify:latest
with:
args: --exclude "build/site/_/**" -o build/ -r build/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.9.3
if: startsWith(github.ref, 'refs/tags/')
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/site