Reword shadow load prompt #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |