-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (28 loc) · 931 Bytes
/
build.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
name: "Build and lint apps"
on: [push, pull_request]
jobs:
ufbt-build-action:
runs-on: ubuntu-latest
name: 'ufbt: Build for Release branch'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build mfc-editor with ufbt
uses: flipperdevices/[email protected]
id: build-app
with:
task: build
app-dir: "mfc-editor"
ufbt-args: ""
sdk-channel: release
- name: Upload mfc-editor artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-mfc-editor-${{ steps.build-app.outputs.suffix }}
path: ${{ steps.build-app.outputs.fap-artifacts }}
- name: Lint sources
uses: flipperdevices/[email protected]
with:
# skip SDK setup, we already did it in previous step
skip-setup: true
task: lint