Skip to content

Commit

Permalink
add matrix build action for Release and RC
Browse files Browse the repository at this point in the history
  • Loading branch information
gebeto committed Nov 16, 2023
1 parent ac75c65 commit b224584
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ on: [push]
jobs:
ufbt-build-action:
runs-on: ubuntu-latest
name: 'ufbt: Build'
strategy:
matrix:
include:
- name: RC channel
sdk-channel: rc
- name: release channel
sdk-channel: release

name: 'ufbt: Build for ${{ matrix.name }}'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -14,7 +22,7 @@ jobs:
uses: flipperdevices/flipperzero-ufbt-action@v0.1.2
id: build-app
with:
sdk-channel: release
sdk-channel: ${{ matrix.sdk-channel }}

- name: Upload app artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit b224584

Please sign in to comment.