-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Store deployments in json file, and generate md and txt file from that
- Loading branch information
1 parent
97281ba
commit 251fd77
Showing
3 changed files
with
102 additions
and
3 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,76 @@ | ||
/* eslint-disable no-console */ | ||
const fs = require('node:fs'); | ||
const path = require('node:path'); | ||
const assert = require('node:assert'); | ||
|
||
const itemCountMd = 100; | ||
const txtFileName = 'deployments.txt'; | ||
|
||
async function go() { | ||
// eslint-disable-next-line no-undef | ||
const [, , deploymentsFile, outputDir] = process.argv; | ||
|
||
assert(deploymentsFile, 'Missing deploymentsFile'); | ||
assert(outputDir, 'Missing outputDir'); | ||
|
||
const { stable, latest, individual } = JSON.parse( | ||
await fs.promises.readFile(deploymentsFile, { encoding: 'utf-8' }), | ||
); | ||
|
||
const mdContent = `# Deployments | ||
- **Stable:** [${stable}](${stable}) | ||
- **Latest:** [${latest}](${latest}) | ||
Below you can find the URL's to deployments for individual commits: | ||
${Array.from(individual) | ||
.reverse() | ||
.slice(0, itemCountMd) | ||
.map( | ||
({ commit, version, url }) => | ||
`- [\`${commit.slice( | ||
0, | ||
8, | ||
)} (${version})\`](https://github.com/video-dev/hls.js/commit/${commit}): [${url}](${url})`, | ||
) | ||
.join('\n')} | ||
_Note for older deployments please check [${txtFileName}](./${txtFileName})._ | ||
`; | ||
|
||
await fs.promises.writeFile(path.resolve(outputDir, 'README.md'), mdContent, { | ||
encoding: 'utf-8', | ||
}); | ||
|
||
const txtContent = `Deployments | ||
=========== | ||
- Stable: ${stable} | ||
- Latest: ${latest} | ||
Below you can find the URL's to deployments for individual commits: | ||
${Array.from(individual) | ||
.reverse() | ||
.map( | ||
({ commit, version, url }) => | ||
`- ${commit.slice(0, 8)} (${version}): ${url}`, | ||
) | ||
.join('\n')} | ||
`; | ||
|
||
await fs.promises.writeFile( | ||
path.resolve(outputDir, txtFileName), | ||
txtContent, | ||
{ | ||
encoding: 'utf-8', | ||
}, | ||
); | ||
} | ||
|
||
go().catch((e) => { | ||
console.error(e); | ||
// eslint-disable-next-line no-undef | ||
process.exit(1); | ||
}); |
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 |
---|---|---|
|
@@ -10,7 +10,6 @@ currentCommit=$(git rev-parse HEAD) | |
|
||
root="./cloudflare-pages" | ||
version="$(jq -r -e '.version' "./package.json")" | ||
idShort="$(echo "$currentCommit" | cut -c 1-8) ($version)" | ||
|
||
deploy () { | ||
projectName=$1 | ||
|
@@ -37,8 +36,31 @@ deploymentUrl=`curl -X GET --fail "https://api.cloudflare.com/client/v4/accounts | |
echo "Updating deployments branch." | ||
git clone --depth 1 "https://${GITHUB_TOKEN}@github.com/video-dev/hls.js.git" -b deployments "$root/deployments" | ||
cd "$root/deployments" | ||
echo "- [\`$idShort\`](https://github.com/video-dev/hls.js/commit/$currentCommit): [$deploymentUrl/]($deploymentUrl/)" >> "README.md" | ||
|
||
|
||
jq '.stable = "https://hlsjs.video-dev.org/"' deployments.json > deployments.json.tmp | ||
mv deployments.json.tmp deployments.json | ||
|
||
jq '.latest = "https://hlsjs-dev.video-dev.org/"' deployments.json > deployments.json.tmp | ||
mv deployments.json.tmp deployments.json | ||
|
||
jq \ | ||
--arg version "$version" \ | ||
--arg commit "$currentCommit" \ | ||
--arg url "$deploymentUrl" \ | ||
'.individual += [{ | ||
"version": $version, | ||
"commit": $commit, | ||
"url": $url, | ||
}]' deployments.json > deployments.json.tmp | ||
mv deployments.json.tmp deployments.json | ||
|
||
node scripts/build-deployments-readme.js './deployments.json' '.' | ||
|
||
git add "deployments.json" | ||
git add "deployments.txt" | ||
git add "README.md" | ||
|
||
git -c user.name="hlsjs-ci" -c user.email="[email protected]" commit -m "update for $id" | ||
git push "https://${GITHUB_TOKEN}@github.com/video-dev/hls.js.git" | ||
cd .. | ||
|
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