We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d73b322 commit 32755dcCopy full SHA for 32755dc
.github/workflows/release.yml
@@ -4,9 +4,12 @@ name: Compile Assets and Create Draft Release
4
on:
5
push:
6
tags:
7
- # Trigger on tags beginning with 'powersync-v'
8
- # This is how `melos version ..` tags things
9
- - 'powersync-v*'
+ # Trigger on tags beginning with 'v'
+ # Note that `melos version ...` adds the package name as a suffix
+ # This action is not compatible with tags such as `powersync-v1.1.1`
10
+ # marvinpinto/action-automatic-releases struggles to generate changelogs
11
+ # Be sure to manually tag the commit to trigger this action
12
+ - 'v*'
13
14
jobs:
15
build:
0 commit comments