Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/build-apk.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Build APK & Bundle

on:
push:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Release body will have empty commit message

By removing the push trigger, the workflow now only runs via workflow_dispatch. However, the release body template at line 221 references ${{ github.event.head_commit.message }}, which is only populated during push events. When triggered manually, this variable will be empty, resulting in an empty "Changes:" section in the release body. Consider using ${{ github.event.inputs.message }} with an input parameter, or removing this reference.

Fix in Cursor Fix in Web

branches: [ "main" ]
workflow_dispatch:

permissions:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/create-keystore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:
description: 'Release tag (e.g., keystore-v1.0.0)'
required: false
default: 'keystore-latest'
push:
branches: [ main ]

jobs:
create-keystore-release:
Expand Down