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: "FAP: Build & Publish to releases" | |
# 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: | |
## put your main branch name under "braches" | |
branches: | |
- master | |
pull_request: | |
#schedule: | |
# do a build every day | |
#- cron: "1 1 * * *" | |
jobs: | |
ufbt-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
# - name: dev channel | |
# sdk-channel: dev | |
- name: release channel | |
sdk-channel: release | |
# You can add unofficial channels here. See ufbt action docs for more info. | |
name: 'ufbt: Build for ${{ matrix.name }}' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Build with ufbt | |
uses: flipperdevices/[email protected] | |
id: build-app | |
with: | |
sdk-channel: ${{ matrix.sdk-channel }} | |
- name: Upload app artifacts | |
uses: actions/[email protected] | |
with: | |
# See ufbt action docs for other output variables | |
name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }} | |
path: ${{ steps.build-app.outputs.fap-artifacts }} | |
release: | |
needs: ufbt-build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# - name: Download dev artifacts | |
# uses: actions/[email protected] | |
# with: | |
# name: ${{ github.event.repository.name }}-dev | |
# path: ./artifacts/dev | |
- name: Download release artifacts | |
uses: actions/[email protected] | |
with: | |
name: ${{ github.event.repository.name }}-release | |
path: ./artifacts/release | |
- name: Extract .zip release artifacts | |
run: | | |
mkdir -p ./extracted/release | |
unzip './artifacts/release/*.zip' -d ./extracted/release | |
- name: Create GitHub Release | |
uses: ncipollo/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.ref_name }} | |
releaseName: Release ${{ github.ref_name }} | |
body: | | |
### Release Information | |
This is an automated downloadable release of the application. Made by the GitHub Actions. | |
This release includes a .FAP files for the Flipper Zero. | |
### Files | |
The following files are attached to this release for download: | |
- Release version, From the official Flipper Zero Release update channel. | |
artifacts: | | |
./extracted/release/*.fap | |
draft: true | |
prerelease: false |