Skip to content

Commit

Permalink
Fix: GitHub Actions trigger for docker-deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
finagin authored and dometto committed Apr 9, 2024
1 parent 4591bf7 commit b40af29
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ on:
push:
branches:
- master
tags:
- "*"
paths-ignore:
- '**.md'
- '**.txt'
- 'contrib/**'
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -17,12 +17,13 @@ jobs:
uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: |
gollumwiki/gollum
ghcr.io/gollum/gollum
tags: |
type=ref,event=branch,pattern=master
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
Expand Down

0 comments on commit b40af29

Please sign in to comment.