generated from Alex4386/f0-template
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (40 loc) · 1.58 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Nightly
on:
push:
branches:
- main
jobs:
all:
runs-on: ubuntu-latest
name: Nightly Build for ${{ matrix.name }}
strategy:
matrix:
include:
- name: (Official) Release channel
sdk-ident: official_release
sdk-channel: release
- name: (Unleashed) Release channel
sdk-ident: unleashed_release
sdk-index-url: https://up.unleashedflip.com/directory.json
sdk-channel: release
- name: (Official) Dev channel
sdk-ident: official_dev
sdk-channel: dev
- name: (Unleashed) Development channel
sdk-ident: unleashed_dev
sdk-index-url: https://up.unleashedflip.com/directory.json
sdk-channel: dev
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build for ${{ matrix.name }}
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 }} (${{ matrix.sdk-ident }})
path: ${{ steps.build-app.outputs.fap-artifacts }}