Skip to content

Commit

Permalink
refactor: cleanup github action
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomoferretti committed Nov 25, 2023
1 parent dd45e9f commit 2fa03fe
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
name: "FAP: Build for multiple SDK sources"
# This will build your app for dev and release channels on GitHub.
# It will also build your app every day to make sure it's up to date with the latest SDK changes.
# See https://github.com/marketplace/actions/build-flipper-application-package-fap for more information

on:
push:
## put your main branch name under "branches"
#branches:
# - master
branches:
- main
pull_request:
schedule:
# do a build every day
schedule:
- cron: "1 1 * * *"

jobs:
Expand All @@ -23,8 +18,7 @@ jobs:
sdk-channel: dev
- name: release channel
sdk-channel: release
# You can add unofficial channels here. See ufbt action docs for more info.
name: 'ufbt: Build for ${{ matrix.name }}'
name: "ufbt: Build for ${{ matrix.name }}"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -36,6 +30,5 @@ jobs:
- name: Upload app artifacts
uses: actions/upload-artifact@v3
with:
# See ufbt action docs for other output variables
name: ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
path: ${{ steps.build-app.outputs.fap-artifacts }}

0 comments on commit 2fa03fe

Please sign in to comment.