Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
zinongli committed Aug 4, 2024
2 parents 4b3fe38 + 0ff31da commit 2f2ec4b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/ufbt.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "uFBT Build"
on:
workflow_dispatch:
push:
branches:
- main
- develop
pull_request:
# schedule:
# do a build every day
# - cron: "1 1 * * *"
jobs:
ufbt-build-action:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: dev channel
sdk-channel: dev
- name: release channel
sdk-channel: release
name: 'ufbt: Build for ${{ matrix.name }}'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build with ufbt
uses: flipperdevices/[email protected]
id: build-app
with:
sdk-channel: ${{ matrix.sdk-channel }}
sdk-index-url: ${{ matrix.sdk-index-url }}
- 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 }}
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ You can also save the data you've just loaded and/or configured.

## To-Do:

- [ ] Update writing success icon as Willy did in momentum app catalog repo.
- [ ] Edit the directory handling into using OFW built-in functions storage_simply_mkdir. Also Flipper format. Credit auguzanellato.

## Special Thanks:
Expand Down

0 comments on commit 2f2ec4b

Please sign in to comment.