Revise CHANGELOG for version 2.0 updates #9
This file contains hidden or 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: "FAP: Build Unitemp release" | |
| on: [push, pull_request] | |
| jobs: | |
| ufbt-build-action: | |
| runs-on: ubuntu-latest | |
| name: 'ufbt: Build for master branch' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build with ufbt | |
| uses: flipperdevices/flipperzero-ufbt-action@v0.1 | |
| id: build-app | |
| with: | |
| # Set to 'release' to build for latest published release version | |
| 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 }} |