Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0.0 #4

Merged
merged 11 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 9 additions & 37 deletions .github/workflows/gerber.yml
Original file line number Diff line number Diff line change
@@ -1,62 +1,34 @@
# This is a basic workflow to help you get started with Actions
name: release

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

# Generate gerber files
- name: KiBot GitHub action
uses: INTI-CMNB/KiBot@v1.7.0
- name: Generate user guide and adsd it to the release
run: docker compose up doc && mv _doc release

- name: Run another script
run: ls -rl
- name: Generate gerbers, schema, images...
uses: INTI-CMNB/KiBot@v1.7.0

- name: Upload manufacturing files
uses: actions/upload-artifact@v4.3.3
with:
name: manufacturing
if-no-files-found: error
path: "**.zip"

- name: Upload images
uses: actions/upload-artifact@v4.3.3
with:
name: images
if-no-files-found: error
path: "**.png"
path: "Gerbers"

- name: Upload BOM
- name: Upload release
uses: actions/upload-artifact@v4.3.3
with:
name: BOM
name: release
if-no-files-found: error
path: "Interactive BoM"

- name: Upload pdf schematic
uses: actions/upload-artifact@v4.3.3
with:
name: schematic
if-no-files-found: error
path: "**.pdf"

path: "release/*"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ fp-info-cache
# Added by me
/#auto_saved_files#
~*.lck

# Generated user guide
_doc
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"davidanson.vscode-markdownlint",
"gruntfuggly.todo-tree"
]
}
Loading