| 1234567891011121314151617181920212223242526272829303132 |
- 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/flipperzero-ufbt-action@v0.1
- # with:
- # task: lint
- - name: Build with ufbt
- uses: flipperdevices/flipperzero-ufbt-action@v0.1
- id: build-app
- with:
- # skip-setup: true
- sdk-channel: release
- - name: Upload app artifacts
- uses: actions/upload-artifact@v3
- with:
- name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
- path: ${{ steps.build-app.outputs.fap-artifacts }}
|