Skip to content

Commit b5409f1

Browse files
Merge pull request #30 from form3tech-oss/paulo-fix-release
ci: fixes the non-triggering release job
2 parents 443a4dc + f95a3e2 commit b5409f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
branches:
55
- master
6+
tags:
7+
- '**'
68
pull_request:
79

810

@@ -26,8 +28,10 @@ jobs:
2628
AUTH0_CLIENT_SECRET: "${{ secrets.AUTH0_CLIENT_SECRET }}"
2729
publish:
2830
if: startsWith(github.ref, 'refs/tags/')
29-
needs: build_test
31+
needs: [ build_test ]
3032
runs-on: ubuntu-latest
33+
permissions:
34+
contents: write
3135
steps:
3236
- name: Checkout Code
3337
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0

0 commit comments

Comments
 (0)