Skip to content

Commit db991a0

Browse files
committed
Fix publish action
1 parent fa0fe56 commit db991a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: Publish
22

33
on:
4-
push:
4+
workflow_run:
5+
workflows: [CI]
6+
types: [completed]
57
branches:
68
- main
7-
paths-ignore:
8-
- '**/*.md'
99

1010
jobs:
1111
bump-version:
12-
if: github.repository_owner == 'mackenly' && needs.lint.result == 'success' && needs.test.result == 'success'
12+
if: github.repository_owner == 'mackenly' && github.event.workflow_run.conclusion == 'success'
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 10
1515
permissions:

0 commit comments

Comments
 (0)