Skip to content

Commit d1630b5

Browse files
committed
Disable lint (at least initially)
1 parent f87d552 commit d1630b5

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

.github/workflows/build.yml

+18-9
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,34 @@ on: [push, pull_request]
33
jobs:
44
ufbt-build-action:
55
runs-on: ubuntu-latest
6-
name: 'ufbt: Build for Dev branch'
6+
name: 'ufbt: Build for Release branch'
77
steps:
88
- name: Checkout
99
uses: actions/checkout@v3
10+
11+
- name: Setup ufbt
12+
uses: flipperdevices/flipperzero-ufbt-action@v0.1.2
13+
with:
14+
task: setup
15+
sdk-channel: release
16+
1017
- name: Build with ufbt
1118
uses: flipperdevices/flipperzero-ufbt-action@v0.1.2
1219
id: build-app
1320
with:
14-
# Set to 'release' to build for latest published release version
21+
skip-setup: true
1522
sdk-channel: release
23+
1624
- name: Upload app artifacts
1725
uses: actions/upload-artifact@v3
1826
with:
1927
name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
2028
path: ${{ steps.build-app.outputs.fap-artifacts }}
21-
# You can remove this step if you don't want to check source code formatting
22-
- name: Lint sources
23-
uses: flipperdevices/flipperzero-ufbt-action@v0.1.2
24-
with:
25-
# skip SDK setup, we already did it in previous step
26-
skip-setup: true
27-
task: lint
29+
30+
# # You can remove this step if you don't want to check source code formatting
31+
# - name: Lint sources
32+
# uses: flipperdevices/flipperzero-ufbt-action@v0.1.2
33+
# with:
34+
# # skip SDK setup, we already did it in previous step
35+
# skip-setup: true
36+
# task: lint

0 commit comments

Comments
 (0)