Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
echo "✅ Package published successfully to npm!"

- name: Create GitHub deployment
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const version = require('./package.json').version;
Expand All @@ -120,7 +120,7 @@ jobs:
});

- name: Comment on release
uses: actions/github-script@v7
uses: actions/github-script@v8
if: github.event_name == 'release'
with:
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Trigger npm publish workflow
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
await github.rest.actions.createWorkflowDispatch({
Expand Down
Loading