You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/publish.yml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,18 @@ on:
7
7
paths:
8
8
- "pyproject.toml"
9
9
10
+
permissions:
11
+
issues: write
12
+
10
13
jobs:
11
14
publish-node:
12
15
name: Publish Custom Node to registry
13
16
runs-on: ubuntu-latest
17
+
if: ${{ github.repository_owner == 'niknah' }}
14
18
steps:
15
19
- name: Check out code
16
20
uses: actions/checkout@v4
17
21
- name: Publish Custom Node
18
-
uses: Comfy-Org/publish-node-action@main
22
+
uses: Comfy-Org/publish-node-action@v1
19
23
with:
20
24
personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }} ## Add your own personal access token to your Github Repository secrets and reference it here.
0 commit comments