fix: clean up deploy-to-marketplace.yml by removing unnecessary Node.… #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy to GitHub Marketplace | |
| on: | |
| push: | |
| jobs: | |
| deploy: | |
| name: Publish GitHub Action | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Publish to GitHub Marketplace | |
| run: | | |
| echo "Publishing GitHub Action to Marketplace..." | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| gh action publish . --tag latest |