-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Supermanuu/release/v1.0.0
Release v1.0.0
- Loading branch information
Showing
40 changed files
with
9,346 additions
and
29,840 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 |
---|---|---|
@@ -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/*" |
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 |
---|---|---|
|
@@ -31,3 +31,6 @@ fp-info-cache | |
# Added by me | ||
/#auto_saved_files# | ||
~*.lck | ||
|
||
# Generated user guide | ||
_doc |
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,6 @@ | ||
{ | ||
"recommendations": [ | ||
"davidanson.vscode-markdownlint", | ||
"gruntfuggly.todo-tree" | ||
] | ||
} |
Oops, something went wrong.