Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Publish a develop docker image (#11380)
Browse files Browse the repository at this point in the history
I'd find it helpful to have a docker image corresponding to current develop,
without having to build my own.
  • Loading branch information
richvdh authored Nov 19, 2021
1 parent a6f7f84 commit e2e9bea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Build docker images
on:
push:
tags: ["v*"]
branches: [ master, main ]
branches: [ master, main, develop ]
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -38,6 +38,9 @@ jobs:
id: set-tag
run: |
case "${GITHUB_REF}" in
refs/heads/develop)
tag=develop
;;
refs/heads/master|refs/heads/main)
tag=latest
;;
Expand Down
1 change: 1 addition & 0 deletions changelog.d/11380.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Publish a `develop` image to dockerhub.

0 comments on commit e2e9bea

Please sign in to comment.