Skip to content

Commit 4678ec9

Browse files
committed
fix: disable workflow better
1 parent 8477442 commit 4678ec9

File tree

1 file changed

+36
-35
lines changed

1 file changed

+36
-35
lines changed

.github/workflows/ufbt_build.yaml

+36-35
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
1-
# name: "uFBT Build"
2-
# on:
3-
# push:
4-
# branches:
5-
# - main
6-
# - develop
7-
# pull_request:
8-
# # schedule:
9-
# # do a build every day
10-
# # - cron: "1 1 * * *"
11-
# jobs:
12-
# ufbt-build-action:
13-
# runs-on: ubuntu-latest
14-
# strategy:
15-
# matrix:
16-
# include:
17-
# - name: dev channel
18-
# sdk-channel: dev
19-
# - name: release channel
20-
# sdk-channel: release
21-
# name: 'ufbt: Build for ${{ matrix.name }}'
22-
# steps:
23-
# - name: Checkout
24-
# uses: actions/checkout@v4
25-
# - name: Build with ufbt
26-
# uses: flipperdevices/flipperzero-ufbt-action@v0.1.3
27-
# id: build-app
28-
# with:
29-
# sdk-channel: ${{ matrix.sdk-channel }}
30-
# sdk-index-url: ${{ matrix.sdk-index-url }}
31-
# - name: Upload app artifacts
32-
# uses: actions/upload-artifact@v3
33-
# with:
34-
# name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
35-
# path: ${{ steps.build-app.outputs.fap-artifacts }}
1+
name: "uFBT Build"
2+
on:
3+
workflow_dispatch:
4+
# push:
5+
# branches:
6+
# - main
7+
# - develop
8+
# pull_request:
9+
# schedule:
10+
# do a build every day
11+
# - cron: "1 1 * * *"
12+
jobs:
13+
ufbt-build-action:
14+
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
include:
18+
- name: dev channel
19+
sdk-channel: dev
20+
- name: release channel
21+
sdk-channel: release
22+
name: 'ufbt: Build for ${{ matrix.name }}'
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
- name: Build with ufbt
27+
uses: flipperdevices/flipperzero-ufbt-action@v0.1.3
28+
id: build-app
29+
with:
30+
sdk-channel: ${{ matrix.sdk-channel }}
31+
sdk-index-url: ${{ matrix.sdk-index-url }}
32+
- name: Upload app artifacts
33+
uses: actions/upload-artifact@v3
34+
with:
35+
name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
36+
path: ${{ steps.build-app.outputs.fap-artifacts }}

0 commit comments

Comments
 (0)