Skip to content

Commit 3110552

Browse files
committed
fix: clean up deploy-to-marketplace.yml by removing unnecessary Node.js setup and npm install
1 parent 5cc0f17 commit 3110552

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/deploy-to-marketplace.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Deploy to GitHub Marketplace
22

33
on:
44
push:
5+
6+
57
jobs:
68
deploy:
79
name: Publish GitHub Action
@@ -11,14 +13,9 @@ jobs:
1113
- name: Checkout repository
1214
uses: actions/checkout@v4
1315

14-
- name: Set up Node.js
15-
uses: actions/setup-node@v3
16-
with:
17-
node-version: '16'
18-
1916
- name: Publish to GitHub Marketplace
2017
run: |
18+
echo "Publishing GitHub Action to Marketplace..."
2119
git config user.name "github-actions[bot]"
2220
git config user.email "github-actions[bot]@users.noreply.github.com"
23-
npm install -g @actions/cli
2421
gh action publish . --tag latest

0 commit comments

Comments
 (0)