-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from traPtitech/feat/copy.assets
feat: 🎸 Assetをlatestから自動でコピーしてくるように
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Copy Assets to Draft Release | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
|
||
jobs: | ||
copy-assets: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Copy assets from latest to draft release | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const latest = github.rest.repos.getLatestRelease({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo | ||
}); | ||
const assets = latest.data.assets; | ||
for (const asset of assets) { | ||
if (asset.browser_download_url.includes("releases/download")) { | ||
// download data | ||
const download = await github.request({ | ||
method: "GET", | ||
url: asset.url, | ||
headers: { | ||
Accept: "application/octet-stream", | ||
Authorization: "Bearer " + process.env.GITHUB_TOKEN, | ||
}, | ||
responseType: "arraybuffer" | ||
}); | ||
// upload data | ||
const upload = await github.rest.repos.uploadReleaseAsset({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
release_id: context.payload.release.id, | ||
name: asset.name, | ||
data: download.data, | ||
headers: { | ||
"Content-Type": asset.content_type, | ||
"Content-Length": asset.size, | ||
}, | ||
}); | ||
console.log(upload.data.name); | ||
} | ||
} |