We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bfc43c + e7a094a commit d63bb59Copy full SHA for d63bb59
.github/workflows/publish.yml
@@ -8,17 +8,19 @@ on:
8
paths:
9
- "pyproject.toml"
10
11
+permissions:
12
+ issues: write
13
+
14
jobs:
15
publish-node:
16
name: Publish Custom Node to registry
17
runs-on: ubuntu-latest
- # if this is a forked repository. Skipping the workflow.
- if: github.event.repository.fork == false
18
+ if: ${{ github.repository_owner == 'ryanontheinside' }}
19
steps:
20
- name: Check out code
21
uses: actions/checkout@v4
22
- name: Publish Custom Node
- uses: Comfy-Org/publish-node-action@main
23
+ uses: Comfy-Org/publish-node-action@v1
24
with:
25
## Add your own personal access token to your Github Repository secrets and reference it here.
26
personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}
0 commit comments