Skip to content

Commit a37db94

Browse files
RickyNotaroclaude
andauthored
ci: add dev branch trigger to APK build workflow (#56)
The build-apk workflow now also triggers on pushes and PRs to the dev branch, enabling APK testing before merging to master. https://claude.ai/code/session_011To9kcKZkjigtu28cgqw8u Co-authored-by: Claude <noreply@anthropic.com>
1 parent 7b7c4c1 commit a37db94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-apk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: Build Android APK
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [master, dev]
66
paths:
77
- 'src/**'
88
- 'APK/**'
99
- 'package.json'
1010
- 'vite.config.ts'
1111
- '.github/workflows/build-apk.yml'
1212
pull_request:
13-
branches: [master]
13+
branches: [master, dev]
1414
workflow_call:
1515
inputs:
1616
release_tag:

0 commit comments

Comments
 (0)