Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
xtruan committed Jul 18, 2023
1 parent 03e41e7 commit 0a7734f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ jobs:
repository: 'flipperdevices/flipperzero-firmware'
ref: ${{ env.firmware_version }}
submodules: true
- name: Checkout flip-chess
- name: Checkout flipper-chess
uses: actions/checkout@v3
with:
path: 'applications_user/flipper-chess'
- name: Build FAPs
run: ./fbt COMPACT=1 DEBUG=0 faps
- name: Check flip-chess Built
run: test -f build/f7-firmware-C/.extapps/flipchess.fap
- name: Check flipper-chess Built
run: test -f build/f7-firmware-C/.extapps/chess.fap
- name: Check flipper-chess Size
run: ls -l --block-size=K build/f7-firmware-C/.extapps/chess.fap
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Build FAPs
run: ./fbt COMPACT=1 DEBUG=0 faps
- name: Check flipper-chess Built
run: test -f build/f7-firmware-C/.extapps/flipchess.fap
run: test -f build/f7-firmware-C/.extapps/chess.fap
- name: Get Tag
id: tag
uses: dawidd6/action-get-tag@v1
Expand All @@ -36,7 +36,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
build/f7-firmware-C/.extapps/flipchess.fap
build/f7-firmware-C/.extapps/chess.fap
applications_user/flipper-chess/README.md
name: ${{steps.tag.outputs.tag}}
body: Built against Flipper Zero firmware v${{ env.firmware_version }}
Expand Down

0 comments on commit 0a7734f

Please sign in to comment.