We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1dc1b7 commit 9e27f47Copy full SHA for 9e27f47
.github/workflows/apx-gcs-release.yml
@@ -206,15 +206,15 @@ jobs:
206
if (file.name.endsWith('.xml'))
207
continue;
208
console.log('uploading', file.name);
209
- await github.repos.uploadReleaseAsset({
+ await github.rest.repos.uploadReleaseAsset({
210
owner, repo,
211
release_id: "${{ steps.create_release.outputs.id }}",
212
name: file.name,
213
data: await fs.readFile(`package/${file.name}`)
214
});
215
}
216
217
- github.repos.updateRelease({
+ github.rest.repos.updateRelease({
218
219
220
draft: false
0 commit comments