Skip to content

Commit 0a80943

Browse files
authored
Merge pull request #118 from authzed/fix-release-automation
triggers builds if github event is release
2 parents d13016e + 64d2724 commit 0a80943

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/authzed-node.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
node-version: [18, 20, 21]
3636
needs: "paths-filter"
3737
if: |
38-
needs.paths-filter.outputs.codechange == 'true'
38+
needs.paths-filter.outputs.codechange == 'true' || github.event_name == 'release'
3939
steps:
4040
- uses: actions/checkout@v4
4141
- uses: "authzed/action-spicedb@v1"
@@ -81,7 +81,7 @@ jobs:
8181
node-version: [18, 20, 21]
8282
needs: "paths-filter"
8383
if: |
84-
needs.paths-filter.outputs.codechange == 'true'
84+
needs.paths-filter.outputs.codechange == 'true' || github.event_name == 'release'
8585
steps:
8686
- uses: actions/checkout@v4
8787
- uses: "authzed/action-spicedb@v1"

0 commit comments

Comments
 (0)