Files
wehub-resource-sync f1ba9c6c36
/ test (push) Failing after 1s
/ build-and-push-to-ghcr (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:23:39 +08:00

8 lines
243 B
JavaScript
Executable File

#!/usr/bin/env node
const fs = require('fs');
const f = fs.readFileSync('.secret.local.json', 'utf8');
fs.writeFileSync('.secret.local', `SECRETS_COMBINED=${Buffer.from(JSON.stringify(JSON.parse(f)), 'utf-8').toString('base64')}`, 'utf8');