Skip to content

Commit

Permalink
Update Build Action
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanFuentealba committed Dec 3, 2023
1 parent e478418 commit f294fd9
Showing 1 changed file with 34 additions and 9 deletions.
43 changes: 34 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

0 comments on commit f294fd9

Please sign in to comment.