Skip to content

Commit 021bdf7

Browse files
facundofariasclaude
andcommitted
fix: Update to modern GitHub Release action
Replace deprecated actions/create-release@v1 with softprops/action-gh-release@v2 to eliminate set-output deprecation warnings. The new action is actively maintained and uses GitHub's Environment Files instead of the deprecated set-output command. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ec4abde commit 021bdf7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,10 @@ jobs:
5353
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5454

5555
- name: Create GitHub Release
56-
uses: actions/create-release@v1
57-
env:
58-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
uses: softprops/action-gh-release@v2
5957
with:
6058
tag_name: v${{ steps.package-version.outputs.version }}
61-
release_name: Release v${{ steps.package-version.outputs.version }}
59+
name: Release v${{ steps.package-version.outputs.version }}
6260
body: |
6361
🚀 Published to npm: https://www.npmjs.com/package/deployhq-mcp-server/v/${{ steps.package-version.outputs.version }}
6462

0 commit comments

Comments
 (0)