-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7b5ac1
commit 2f14351
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,13 @@ jobs: | |
# Set to 'release' to build for latest published release version | ||
sdk-channel: release | ||
app-dir: ./flipper_companion_apps/applications/external/malveke_gba_cartridge/ | ||
- name: Build with ufbt GAME BOY Photo | ||
uses: flipperdevices/[email protected] | ||
id: build-app-gb-photo | ||
with: | ||
# Set to 'release' to build for latest published release version | ||
sdk-channel: release | ||
app-dir: ./flipper_companion_apps/applications/external/malveke_gb_photo/ | ||
- name: Upload app artifacts GB Cartridge | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
|
@@ -55,6 +62,11 @@ jobs: | |
with: | ||
name: ${{ github.event.repository.name }}-${{ steps.build-app-gba-cartridge.outputs.suffix }} | ||
path: ${{ steps.build-app-gba-cartridge.outputs.fap-artifacts }} | ||
- name: Upload app artifacts GB Photo | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ github.event.repository.name }}-${{ steps.build-app-gb-photo.outputs.suffix }} | ||
path: ${{ steps.build-app-gb-photo.outputs.fap-artifacts }} | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
|
@@ -63,4 +75,5 @@ jobs: | |
${{ steps.build-app-gb-cartridge.outputs.fap-artifacts }} | ||
${{ steps.build-app-link-camera.outputs.fap-artifacts }} | ||
${{ steps.build-app-live-camera.outputs.fap-artifacts }} | ||
${{ steps.build-build-app-gba-cartridge.outputs.fap-artifacts }} | ||
${{ steps.build-build-app-gba-cartridge.outputs.fap-artifacts }} | ||
${{ steps.build-app-gb-photo.outputs.fap-artifacts }} |