| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- name: "UV Meter: Build for multiple SDK sources"
- # This will build your app for dev and release channels on GitHub.
- # It will also build your app every day to make sure it's up to date with the latest SDK changes.
- # See https://github.com/marketplace/actions/build-flipper-application-package-fap for more information
- on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - '**'
- schedule:
- # do a build every day
- - cron: "1 1 * * *"
- jobs:
- ufbt-build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- include:
- - name: Official Dev channel
- sdk-channel: dev
- - name: Official Release channel
- sdk-channel: release
- - name: Unleashed Dev
- sdk-index-url: https://up.unleashedflip.com/directory.json
- sdk-channel: dev
- - name: Unleashed Release
- sdk-index-url: https://up.unleashedflip.com/directory.json
- sdk-channel: release
- - name: Momentum Dev
- sdk-index-url: https://up.momentum-fw.dev/firmware/directory.json
- sdk-channel: dev
- - name: Momentum Release
- sdk-index-url: https://up.momentum-fw.dev/firmware/directory.json
- sdk-channel: release
- name: 'ufbt: Build for ${{ matrix.name }}'
- steps:
- - name: Checkout
- uses: actions/checkout@v4
- - name: Build with ufbt
- uses: flipperdevices/flipperzero-ufbt-action@v0.1.3
- id: build-app
- with:
- sdk-channel: ${{ matrix.sdk-channel }}
- sdk-index-url: ${{ matrix.sdk-index-url }}
- - 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 }}
|