Skip to content

Commit 1d2cb33

Browse files
committed
Fixed duplicate test actions on push
Dev publish triggered by push for now
1 parent e5a5bb0 commit 1d2cb33

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- master
6+
- '**' # Just to trigger the dev publish since we can't manually trigger workflow on master yet. Change to master once we're back to master as default branch.
77
workflow_dispatch:
88

99
concurrency: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
name: Test
22

33
on:
4-
push:
5-
branches-ignore:
6-
- master
7-
tags-ignore:
8-
- "**"
94
pull_request:
5+
workflow_dispatch:
106

117
permissions:
128
contents: read

0 commit comments

Comments
 (0)