Skip to content

Commit

Permalink
ci(publish): remove skip ci from commit
Browse files Browse the repository at this point in the history
It prevents workflow runs for new tags.
  • Loading branch information
shawly committed Feb 8, 2024
1 parent 81132ce commit 2e3207f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Docker

on:
push:
paths-ignore:
- '*.md'
- '**/*.md'

# Publish `master` as Docker `edge` image.
branches:
- master
Expand Down Expand Up @@ -214,7 +218,7 @@ jobs:
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add README.md
git commit -m "docs(README): update supported tags [skip ci]"
git commit -m "docs(README): update supported tags"
git push
# Temp fix
Expand Down

0 comments on commit 2e3207f

Please sign in to comment.