To download the repository: $ git clone --recursive --jobs 8 https://github.com/Next-Flip/Momentum-Firmware.git $ cd Momentum-Firmware/ To flash directly to the Flipper (Needs to be connected via USB, qFlipper closed) $ ./fbt flash_usb_full To compile a TGZ package $ ./fbt updater_package To build and launch a single app: $ ./fbt launch APPSRC=your_appid #4576
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: "Webhook" | |
on: | |
push: | |
workflow_run: | |
workflows: | |
- "Build" | |
- "Lint" | |
- "Release" | |
types: | |
- "completed" | |
issues: | |
types: | |
- "opened" | |
- "closed" | |
- "reopened" | |
issue_comment: | |
types: | |
- "created" | |
jobs: | |
webhook: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Send webhook | |
env: | |
BUILD_WEBHOOK: ${{ secrets.BUILD_WEBHOOK }} | |
DEV_WEBHOOK: ${{ secrets.DEV_WEBHOOK }} | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
run: python .github/workflow_data/webhook.py |