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

Publish a develop docker image #11380

Merged
merged 1 commit into from
Nov 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Publish a develop docker image
I'd find it helpful to have a docker image corresponding to current develop,
without having to build my own.
  • Loading branch information
richvdh committed Nov 17, 2021
commit b9984a4977bbbe265ebfccf2824f436b0bb01f15
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.