Skip to content

Commit 5826750

Browse files
committed
only allow specific branches for dev releases
1 parent 0dd39db commit 5826750

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/dev.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ name: Development pipeline
33
on:
44
push:
55
branches:
6-
- "*"
7-
- "!feature/"
6+
- main
7+
- ptr
8+
- beta
9+
- alpha
810
tags-ignore:
911
- '**'
1012

@@ -31,4 +33,4 @@ jobs:
3133
echo "PACKAGE=$(find .release -type f -name *.zip -printf "%f\n")" >> $GITHUB_ENV
3234
- name: Publish package
3335
run: |
34-
curl https://api.tukui.org/v1/upload/dev/$PACKAGE --upload-file .release/$PACKAGE -H "X-Tukui-Key: $DEPLOY_KEY" -H "Content-Type: application/zip"
36+
curl https://api.tukui.org/v1/upload/dev/$PACKAGE --upload-file .release/$PACKAGE -H "X-Tukui-Key: $DEPLOY_KEY" -H "Content-Type: application/zip"

0 commit comments

Comments
 (0)