-
Notifications
You must be signed in to change notification settings - Fork 6
50 lines (41 loc) · 1.44 KB
/
Copy pathpio-build.yaml
File metadata and controls
50 lines (41 loc) · 1.44 KB
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
name: PlatformIO CI
on:
pull_request:
push:
branches:
- dev
jobs:
pio-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout UI
run: |
echo "Checkout UI"
git clone https://github.com/mp-se/kegmon-ui kegmon-ui
cp kegmon-ui/dist/assets/style.css.gz html/app.css.gz
cp kegmon-ui/dist/assets/index.js.gz html/app.js.gz
- name: Setup PlatformIO
uses: n-vr/setup-platformio-action@v1.0.1
#- name: Run PlatformIO
# run: pio run -e kegmon-release -e kegmon32s2-release
- name: PlatformIO Run
uses: karniv00l/platformio-run-action@v1
with:
environments: "kegmon-release,kegmon32s2-release,kegmon32s3-release"
#targets: "kegmon-release,kegmon32s2-release"
#project-dir: "./some_dir"
#project-conf: "./some_dir/custom.ini"
jobs: 6
silent: false
verbose: true
disable-auto-clean: false
- uses: EndBug/add-and-commit@v9 # You can change this to use a specific version. https://github.com/marketplace/actions/add-commit
if: ${{ github.event_name != 'pull_request' }}
with:
add: 'bin html'
author_name: GitHub Action
author_email: mp-se@noreply.github.com
default_author: github_actor
message: 'GitHub Action Build'
pathspec_error_handling: ignore