Add CI artifact build for the book #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | ||
pull_request: | ||
type: [opened] | ||
push: | ||
jobs: | ||
build-manual: | ||
runs-on: ubuntu-22.04 | ||
image: rust:latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Declare some variables | ||
shell: bash | ||
run: | | ||
echo "sha_short=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV" | ||
echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> "$GITHUB_ENV" | ||
# Install mdbook | ||
- name: Install `mdbook` | ||
run: cargo install mdbook | ||
# Build the book | ||
- name: Build the book | ||
run: | | ||
cd docs/manuel | ||
mdbook build | ||
# Package artifact | ||
- name: Package artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: manuel-backend-${{ env.branch }}-${{ env.sha_short }} | ||
path: book |