Update release.yml

This commit is contained in:
Jordon de Hoog 2024-11-08 10:47:45 -05:00
parent 5703b44a5d
commit 777caec00f

View file

@ -158,26 +158,32 @@ jobs:
release = releaseData; release = releaseData;
} }
const distPath = path.join(process.cwd(), 'artifacts'); let uploadCount = 0;
const files = await fs.readdir(distPath);
async function uploadFilesRecursively(dir) {
for (const file of files) { const entries = await fs.readdir(dir, { withFileTypes: true });
const filePath = path.join(distPath, file);
const stats = await fs.stat(filePath);
if (stats.isFile()) { for (const entry of entries) {
console.log(`Uploading ${file} to release...`); const fullPath = path.join(dir, entry.name);
await github.rest.repos.uploadReleaseAsset({ if (entry.isDirectory()) {
owner: context.repo.owner, await uploadFilesRecursively(fullPath);
repo: context.repo.repo, } else {
release_id: release.id, console.log(`Uploading ${entry.name} to release...`);
name: file, await github.rest.repos.uploadReleaseAsset({
data: await fs.readFile(filePath) owner: context.repo.owner,
}); repo: context.repo.repo,
release_id: release.id,
name: entry.name,
data: await fs.readFile(fullPath)
});
uploadCount++;
}
} }
} }
console.log('All assets uploaded successfully.'); const artifactsPath = path.join(process.cwd(), 'artifacts');
await uploadFilesRecursively(artifactsPath);
console.log(`Successfully uploaded ${uploadCount} assets to the release.`);
deploy: deploy:
name: "Deploy to Production" name: "Deploy to Production"