Skip to content

Commit c3b5132

Browse files
authored
fix: use direct comparison
1 parent c013104 commit c3b5132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-and-upload-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: exit if not on master branch
15-
if: match(${{ github.ref_name }}, '/v\d\.\d\.\d/') == false
15+
if: github.ref_name != 'master'
1616
run: exit -1
1717
- name: Login to Docker Hub
1818
uses: docker/login-action@v2

0 commit comments

Comments
 (0)