@refreshly/github
This is a target module that deploys your keys to GitHub Actions Secrets!
Usage
import { Refreshly, DotEnv } from '@refreshly/core';
import { GitHub } from '@refreshly/github';
// This will take all the properties in the .env file and add them to the rain-cafe org's GitHub Actions Secrets
Refreshly(
new DotEnv.Source({
file: '.env',
targets: [
new GitHub.Target({
orgs: ['rain-cafe'],
}),
],
})
);
Last updated