Skip to content

Commit

Permalink
chore: add release workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joyarzun committed May 20, 2023
1 parent 31867e8 commit 0036fd9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
env:
RELEASE_TAG: ${{ inputs.tag }}
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
script: |
try {
const response = await github.rest.repos.createRelease({
Expand All @@ -29,7 +28,7 @@ jobs:
prerelease: false,
repo: context.repo.repo,
tag_name: process.env.RELEASE_TAG,
make_latest: true
make_latest: "true"
});
core.exportVariable('RELEASE_ID', response.data.id);
Expand Down

0 comments on commit 0036fd9

Please sign in to comment.