Delete webinstaller/CNAME #111
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
name: "FAP: Build and lint" | |
on: [push, pull_request] | |
jobs: | |
ufbt-build-action: | |
runs-on: ubuntu-latest | |
name: 'ufbt: Build' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build with ufbt GB Cartridge | |
uses: flipperdevices/[email protected] | |
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-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-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-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 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: | |
name: ${{ github.event.repository.name }}-official-${{ 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 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/') | |
with: | |
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-app-gba-cartridge.outputs.fap-artifacts }} | |
${{ steps.build-app-gb-photo.outputs.fap-artifacts }} |