Skip to content

Commit

Permalink
fix(ci): do not skip release when branch not named docker
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Oct 5, 2021
1 parent cc0d6fd commit 8b76099
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ name: Build docker image

on:
push:
branches:
- "*docker*"
release:
types: [ published ]

jobs:
build_push:
name: Package docker image
runs-on: ubuntu-18.04
if: ${{ contains(github.ref, 'docker') }}
steps:
#- uses: actions/checkout@v2
- name: Login to GitHub Container Registry
Expand Down

0 comments on commit 8b76099

Please sign in to comment.