Skip to content

Commit 32755dc

Browse files
give release action the tag it wants
1 parent d73b322 commit 32755dc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ name: Compile Assets and Create Draft Release
44
on:
55
push:
66
tags:
7-
# Trigger on tags beginning with 'powersync-v'
8-
# This is how `melos version ..` tags things
9-
- 'powersync-v*'
7+
# Trigger on tags beginning with 'v'
8+
# Note that `melos version ...` adds the package name as a suffix
9+
# 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*'
1013

1114
jobs:
1215
build:

0 commit comments

Comments
 (0)