-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (48 loc) · 1.35 KB
/
kibot_quickstart.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
name: "Variants demo using --quick-start"
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
paths:
- '*.kicad_sch'
- '*.kicad_pcb'
- '.github/workflows/kibot_quickstart.yml'
pull_request:
paths:
- '*.kicad_sch'
- '*.kicad_pcb'
- '.github/workflows/kibot_quickstart.yml'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run aaahhhHHH
uses: INTI-CMNB/KiBot@v2_k6
with:
quickstart: YES
dir: generated
- name: Retrieve results
uses: actions/upload-artifact@v2
with:
name: Automatic_outputs
path: Generated
# This step is to upload the results to another repo (web pages)
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: Retrieve results
uses: actions/download-artifact@v2
with:
name: Automatic_outputs
path: Generated
- name: Deploy navigate results
uses: JamesIves/[email protected]
with:
branch: main
folder: Generated
repository-name: Dekanova/redshift-docs
ssh-key: ${{ secrets.DEPLOY_KEY }}