Skip to content

Commit 36a280b

Browse files
committed
fix: workflow rules
1 parent bd69169 commit 36a280b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/dev-tag.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Checks for release
22

33
on:
44
push:
5-
branches:
6-
- '[0-9]+.[0-9]+'
75
tags:
86
- 'dev-*'
97

@@ -33,7 +31,8 @@ jobs:
3331
with:
3432
token: ${{ secrets.GITHUB_TOKEN }}
3533
checkName: Publish Dev Docker Image
36-
ref: ${{ github.sha }}
34+
ref: ${{ github.event.ref || github.sha }}
35+
3736
- name: set tag
3837
id: set_tag
3938
run: |

.github/workflows/publish-dev-docker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on:
33
push:
44
branches:
55
- "**"
6+
tags:
7+
- 'dev-*'
8+
69
jobs:
710
dependency-branches:
811
name: Dependency Branches

0 commit comments

Comments
 (0)