Skip to content

Commit

Permalink
Update GitHub workflows for Docker release
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Smet committed Mar 12, 2024
1 parent 45a1f85 commit 01b0c3b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ on:
types: [ published ]
push:
branches:
- 'master'
- "**"
tags:
- "*.*.*"
- "*.*"
pull_request:
branches:
- "master"

jobs:
docker:
Expand All @@ -33,5 +39,7 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: jbzoo/csv-blueprint:latest
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 01b0c3b

Please sign in to comment.