Skip to content

chore: Update GitHub Actions workflow for rendering and deploying images #21

chore: Update GitHub Actions workflow for rendering and deploying images

chore: Update GitHub Actions workflow for rendering and deploying images #21

Workflow file for this run

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-pages-artifact@v1
with:
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-pages-artifact@v1
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
with:
append: true