Skip to content

Commit

Permalink
Trim secret from new line
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Dec 10, 2024
1 parent 5fa2793 commit a7ba76c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Publish to NPM
run: pnpm publish --no-git-checks --access public --provenance
run: |
export NODE_AUTH_TOKEN=$(echo "${{ secrets.NPM_TOKEN }}" | tr -d '\n')
pnpm publish --no-git-checks --access public --provenance
continue-on-error: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Upload npm logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: npm-debug-logs
path: /home/runner/.npm/_logs/*.log
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jetbrains/mcp-proxy",
"version": "1.0.7",
"version": "1.0.8",
"description": "A MCP proxy to redirect requests to JetBrains IDEs",
"main": "dist/src/index.js",
"type": "module",
Expand Down

0 comments on commit a7ba76c

Please sign in to comment.