Skip to content
Snippets Groups Projects
Unverified Commit e2e9bea1 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Publish a `develop` docker image (#11380)

I'd find it helpful to have a docker image corresponding to current develop,
without having to build my own.
parent a6f7f845
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ name: Build docker images ...@@ -5,7 +5,7 @@ name: Build docker images
on: on:
push: push:
tags: ["v*"] tags: ["v*"]
branches: [ master, main ] branches: [ master, main, develop ]
workflow_dispatch: workflow_dispatch:
permissions: permissions:
...@@ -38,6 +38,9 @@ jobs: ...@@ -38,6 +38,9 @@ jobs:
id: set-tag id: set-tag
run: | run: |
case "${GITHUB_REF}" in case "${GITHUB_REF}" in
refs/heads/develop)
tag=develop
;;
refs/heads/master|refs/heads/main) refs/heads/master|refs/heads/main)
tag=latest tag=latest
;; ;;
......
Publish a `develop` image to dockerhub.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment