PCB Update #9
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: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**/README.md' | |
- '**/LICENSE' | |
- '**/CHANGES.txt' | |
- '**/img/*' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**/README.md' | |
- '**/LICENSE' | |
- '**/CHANGES.txt' | |
- '**/img/*' | |
workflow_dispatch: | |
paths-ignore: | |
- '**/README.md' | |
- '**/LICENSE' | |
- '**/CHANGES.txt' | |
- '**/img/*' | |
env: | |
DOCKER_USER_OPTION: '$UID:$GID' | |
name: Build | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
name: Generate | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- uses: xanantis/docker-file-ownership-fix@v1 | |
- name: Run build script | |
run: | | |
chmod +x build.sh | |
./build.sh | |
shell: bash | |
- name: Persist PCB gerbers | |
uses: actions/[email protected] | |
with: | |
name: One_pcb_gerbers | |
path: gerbers/pcb | |
- name: Persist case gerbers | |
uses: actions/[email protected] | |
with: | |
name: One_case_gerbers | |
path: gerbers/case | |
- name: Persist images | |
uses: actions/[email protected] | |
with: | |
name: One_images | |
path: images |