Fixing claat path #13
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
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Install claat tool | |
- name: Install claat tool | |
run: go install github.com/googlecodelabs/tools/claat@latest | |
env: | |
GOPATH: ${{ runner.temp }}/go | |
# Ensure claat is in PATH | |
- name: Add claat to PATH | |
run: echo "${{ runner.temp }}/go/bin" >> $GITHUB_PATH | |
# Step to Generate CodeLab HTML Files | |
- name: Generate CodeLabs content | |
run: | | |
mkdir -p codelabs | |
claat export codelabs/workshop/workshop-codelab.md -o codelabs-generated | |
# Writerside build step | |
- name: Build docs using Writerside Docker builder | |
uses: JetBrains/writerside-github-action@v4 | |
with: | |
instance: ${{ env.INSTANCE }} | |
artifact: ${{ env.ARTIFACT }} | |
docker-version: ${{ env.DOCKER_VERSION }} | |
- name: Save artifact with build results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: | | |
artifacts/${{ env.ARTIFACT }} | |
retention-days: 7 |