Skip to content

Commit 29bfe1f

Browse files
committed
Fixed publish workflow branch references and updated banner configuration
- Changed git push target from 'master' to 'main' in banner update and version bump steps - Added Robolly node logo URL to banner configuration - Removed version field from banner config (now dynamically generated)
1 parent b03a75a commit 29bfe1f

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
git add intro.png
152152
if ! git diff --cached --quiet; then
153153
git commit -m "chore: update banner for v${{ steps.version.outputs.new-version }}"
154-
git push origin master
154+
git push origin main
155155
echo "✅ Banner updated and pushed"
156156
else
157157
echo "ℹ️ No banner changes to commit"
@@ -375,7 +375,7 @@ jobs:
375375
run: |
376376
git add package.json pnpm-lock.yaml
377377
git commit -m "chore: bump version to v${{ needs.validate.outputs.new-version }}" || echo "No changes to commit"
378-
git push origin master || echo "Nothing to push"
378+
git push origin main || echo "Nothing to push"
379379
380380
- name: Create Git tag
381381
run: |

scripts/banner.config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"nodeName": "Robolly",
33
"description": "Template-based image & video generation with Robolly API",
4-
"version": "0.1.0",
5-
"nodeLogo": "",
4+
"nodeLogo": "https://s3.g.s4.mega.io/yebes47uhignbseo6okwiz5s5fn5uekplwkrl/n8n/nodes/robolly.svg",
65
"theme": "ocean",
76
"globalFont": "Inter",
87
"author": "nskha",

0 commit comments

Comments
 (0)