aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2024-08-24 10:13:14 +0000
committerOmar Polo <op@omarpolo.com>2024-08-24 10:13:14 +0000
commit7e444bb814858183a5761f50037028c1f12416c7 (patch)
tree35533f2fa33405b80513d590238166c7ed2577b8
parent3ec1d34a16a6c778a9e4c89879db4ffd2d9c17f6 (diff)
github: limit docker image builds to tags and the master branch
-rw-r--r--.github/workflows/alpine-release.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/alpine-release.yml b/.github/workflows/alpine-release.yml
index dc82dea..5999fda 100644
--- a/.github/workflows/alpine-release.yml
+++ b/.github/workflows/alpine-release.yml
@@ -2,6 +2,9 @@ name: release docker image
on:
push:
tags:
+ - '*'
+ branches:
+ - master
env:
IMAGE_NAME: "gmid"
jobs: