-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.52 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: release
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call: # Needed in order to be called from other pipeline
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Bump version without pushing tag
id: tag
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
dry_run: true # Avoids git tag creation in this run
- name: Generate user guide and adsd it to the release
run: docker compose up doc && mv _doc release
- name: Set Git version
run: docker compose up version
env:
GIT_VERSION_STRING: ${{ steps.tag.outputs.new_tag }}
- name: Generate gerbers, schema, images...
uses: INTI-CMNB/KiBot@v1.7.0
env:
KICAD_3RD_PARTY: ${GITHUB_WORKSPACE}/3rdparty/
- name: Inspect project files
run: ls -l . release Gerbers
- name: Upload manufacturing files
uses: actions/upload-artifact@v4.3.3
with:
name: manufacturing
if-no-files-found: error
path: "Gerbers"
- name: Upload release
uses: actions/upload-artifact@v4.3.3
with:
name: release
if-no-files-found: error
path: "release/*"
- name: Upload 3D
uses: actions/upload-artifact@v4.3.3
with:
name: 3d.step
if-no-files-found: error
path: 3d.step