Skip to content

FAP: Build and lint #32

FAP: Build and lint

FAP: Build and lint #32

Workflow file for this run

name: "FAP: Build and lint"
on:
push:
pull_request:
schedule:
# do a build every day
- cron: "1 1 * * *"
jobs:
ufbt-build-action:
runs-on: ubuntu-latest
name: 'ufbt: Build for Release branch'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
# - name: Lint sources
# uses: flipperdevices/[email protected]
# with:
# task: lint
- name: Build with ufbt
uses: flipperdevices/[email protected]
id: build-app
with:
# skip-setup: true
sdk-channel: release
- name: Upload app artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
path: ${{ steps.build-app.outputs.fap-artifacts }}