Skip to content

Commit 7de7aa7

Browse files
committed
chore: fix release
1 parent eecd893 commit 7de7aa7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/docker-images.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
name: Publish Docker Image
2727

2828
on:
29+
push:
30+
branches:
31+
- chore/release_1
2932
workflow_call:
3033
inputs:
3134
tag:
@@ -70,7 +73,7 @@ jobs:
7073
- name: Set Docker tags
7174
id: meta
7275
run: |
73-
INPUT_TAG="${{ inputs.tag }}"
76+
INPUT_TAG=dev-v0.1.1
7477
if [ -z "$INPUT_TAG" ]; then echo "::error::inputs.tag is empty"; exit 1; fi
7578
if echo "$INPUT_TAG" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
7679
if [ "${{ github.ref }}" != "refs/heads/master" ] && [ "${{ github.event_name }}" != "release" ]; then
@@ -130,7 +133,7 @@ jobs:
130133
- name: Set Docker tags
131134
id: meta
132135
run: |
133-
INPUT_TAG="${{ inputs.tag }}"
136+
INPUT_TAG=dev-v0.1.1
134137
if [ -z "$INPUT_TAG" ]; then echo "::error::inputs.tag is empty"; exit 1; fi
135138
if echo "$INPUT_TAG" | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
136139
if [ "${{ github.ref }}" != "refs/heads/master" ] && [ "${{ github.event_name }}" != "release" ]; then

0 commit comments

Comments
 (0)