-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix wrong title block description.
- Loading branch information
Showing
8 changed files
with
44,214 additions
and
25,132 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
hw/cam_profi/* merge=theirs | ||
doc/gen/* merge=theirs |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Release Assets | ||
|
||
permissions: write-all | ||
|
||
on: | ||
release: | ||
types: [edited, prereleased, released] | ||
|
||
jobs: | ||
upload-gerber-assets: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up variables | ||
run: | | ||
REPO_NAME=$(basename -s .git `git config --get remote.origin.url`) | ||
COMMIT_SHA=$(git rev-parse --short HEAD) | ||
ZIP_NAME="${REPO_NAME}-${COMMIT_SHA}.gerber.zip" | ||
echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV | ||
- name: Create ZIP archive of Gerber files | ||
run: | | ||
zip -j ${{ env.ZIP_NAME }} hw/cam_profi/gbr/* | ||
- name: Upload ZIP as release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ${{ env.ZIP_NAME }} | ||
asset_name: ${{ env.ZIP_NAME }} | ||
asset_content_type: application/zip |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
*~ | ||
*.000 | ||
_autosave-* | ||
*auto_saved_files# | ||
*backup* | ||
*-backups | ||
*.bak | ||
*.bck | ||
*.dsn | ||
*fp-info-cache | ||
fp-info-cache | ||
*.kicad_pcb-bak | ||
*.kicad_prl | ||
*.kicad_sch-bak | ||
*.lck | ||
*.orig | ||
*-save.kicad_pcb | ||
*-save.pro | ||
*.sch-bak | ||
*.ses | ||
*.tmp |
Submodule assets
updated
18 files
+31 −27 | graphics/MLAB_inside.svg | |
+0 −2 | kibot/cad.kibot.yaml | |
+0 −1 | kibot/drc.kibot.yaml | |
+1 −3 | kibot/erc.kibot.yaml | |
+0 −2 | kibot/gerbers.kibot.yaml | |
+2 −4 | kibot/ibom.kibot.yaml | |
+3 −5 | kibot/placement.kibot.yaml | |
+0 −2 | kibot/pnp.kibot.yaml | |
+4 −6 | kibot/render.kibot.yaml | |
+0 −2 | kibot/report.kibot.yaml | |
+0 −2 | kibot/schematics.kibot.yaml | |
+2 −4 | kibot/xml.kibot.yaml | |
+275 −234 | templates/KiCAD/page_layout.kicad_wks | |
+7 −2 | workflows/copy_workflow_to_repo.sh | |
+2 −0 | workflows/gitattribudes | |
+22 −0 | workflows/gitignore | |
+28 −28 | workflows/kicad_outputs.yml | |
+36 −0 | workflows/release-assets.yml |
Oops, something went wrong.