Skip to content

Commit

Permalink
Fix: Slide out of try-block
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 19, 2022
1 parent 7133355 commit c630749
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,15 @@ jobs:
repo: context.repo.repo,
tag_name: process.env.RELEASE_TAG,
});
core.exportVariable('RELEASE_ID', response.data.id);
core.exportVariable('RELEASE_UPLOAD_URL', response.data.upload_url);
} catch (error) {
core.setFailed(error.message);
return;
}
core.exportVariable('RELEASE_ID', response.data.id);
core.exportVariable('RELEASE_UPLOAD_URL', response.data.upload_url);
- name: "Create release asset directory"
run: "mkdir -p .build/phar/"

Expand Down

0 comments on commit c630749

Please sign in to comment.