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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:

- name: Check if release exists and update if needed
id: check-existing
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
TAG_NAME: ${{ steps.tag.outputs.TAG_NAME }}
with:
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

- name: Update existing release
if: steps.check-existing.outputs.exists == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
TAG_NAME: ${{ steps.tag.outputs.TAG_NAME }}
TAG_MESSAGE: ${{ steps.tag_message.outputs.MESSAGE }}
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:

- name: Create Release
if: steps.check-existing.outputs.exists != 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
TAG_NAME: ${{ steps.tag.outputs.TAG_NAME }}
TAG_MESSAGE: ${{ steps.tag_message.outputs.MESSAGE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0

- name: Sync missing/incomplete releases from tags
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const owner = context.repo.owner;
Expand Down
Loading