chore: Update GitHub Actions workflow for rendering and deploying images #22
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
# Workflow for rendering and deploying images | |
name: Render and Deploy Images | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
render-images: | |
name: Render Images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Render PCB images | |
uses: linalinn/kicad-render@main | |
with: | |
pcb_file: hw/Zelvicka.kicad_pcb | |
output_path: ${{ github.workspace }}/images | |
animation: gif | |
- name: Setup Pages | |
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' | |
uses: actions/configure-pages@v3 | |
- name: Upload Artifact | |
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: rendered-images | |
path: "images" | |
deploy-pages: | |
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
needs: render-images | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Download Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: rendered-images | |
path: "images" | |
- name: Copy downloaded images to docs directory | |
run: cp -R images/* docs/images/ | |
- name: Deploy to GitHub Pages | |
id: deployment | |
run: mkdocs gh-deploy --force |