-
-
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
e478418
commit f294fd9
Showing
1 changed file
with
34 additions
and
9 deletions.
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 |
---|---|---|
|
@@ -9,35 +9,35 @@ jobs: | |
uses: actions/checkout@v4 | ||
- name: Build with ufbt GB Cartridge | ||
uses: flipperdevices/[email protected] | ||
id: build-app | ||
id: build-app-gb-cartridge | ||
with: | ||
# Set to 'release' to build for latest published release version | ||
sdk-channel: release | ||
app-dir: ./flipper_companion_apps/applications/external/malveke_gb_cartridge/ | ||
- name: Build with ufbt GB Link Camera | ||
uses: flipperdevices/[email protected] | ||
id: build-app | ||
id: build-app-link-camera | ||
with: | ||
# Set to 'release' to build for latest published release version | ||
sdk-channel: release | ||
app-dir: ./flipper_companion_apps/applications/external/malveke_gb_link_camera/ | ||
- name: Build with ufbt GB Live Camera | ||
uses: flipperdevices/[email protected] | ||
id: build-app | ||
id: build-app-live-camera | ||
with: | ||
# Set to 'release' to build for latest published release version | ||
sdk-channel: release | ||
app-dir: ./flipper_companion_apps/applications/external/malveke_gb_live_camera/ | ||
- name: Build with ufbt GBA Cartridge | ||
uses: flipperdevices/[email protected] | ||
id: build-app | ||
id: build-app-gba-cartridge | ||
with: | ||
# 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 Pokemon Trading | ||
uses: flipperdevices/[email protected] | ||
id: build-app | ||
id: build-app-pokemon-trading | ||
with: | ||
# Set to 'release' to build for latest published release version | ||
sdk-channel: release | ||
|
@@ -46,9 +46,34 @@ jobs: | |
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: ${{ steps.build-app.outputs.fap-artifacts }} | ||
- name: Upload app artifacts | ||
files: | | ||
${{ 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-app-pokemon-trading.outputs.fap-artifacts }} | ||
- name: Upload app artifacts GB Cartridge | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }} | ||
path: ${{ steps.build-app.outputs.fap-artifacts }} | ||
name: ${{ github.event.repository.name }}-${{ steps.build-app-gb-cartridge.outputs.suffix }} | ||
path: ${{ steps.build-app-gb-cartridge.outputs.fap-artifacts }} | ||
- name: Upload app artifacts GB Link Camera | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ github.event.repository.name }}-${{ steps.build-app-link-camera.outputs.suffix }} | ||
path: ${{ steps.build-app-link-camera.outputs.fap-artifacts }} | ||
- name: Upload app artifacts GB Live Camera | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ github.event.repository.name }}-${{ steps.build-app-live-camera.outputs.suffix }} | ||
path: ${{ steps.build-app-live-camera.outputs.fap-artifacts }} | ||
- name: Upload app artifacts GBA Cartridge | ||
uses: actions/upload-artifact@v3 | ||
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 Pokemon Trading | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ github.event.repository.name }}-${{ steps.build-app-pokemon-trading.outputs.suffix }} | ||
path: ${{ steps.build-app-pokemon-trading.outputs.fap-artifacts }} |