@refreshly/forgejo
This is a target module that deploys your keys to [Forgejo Actions Secrets](https://forgejo.org/docs/v11.0/user/actions/basic-concepts/#secrets)!
### Usage
```tsx
import { Refreshly, DotEnv } from '@refreshly/core';
import { Forgejo } from '@refreshly/forgejo';
// This will take all the properties in the .env file and add them to the ribbon-studios org's GitHub Actions Secrets
Refreshly(
new DotEnv.Source({
file: '.env',
targets: [
new Forgejo.Target({
orgs: ['ribbon-studios'],
}),
],
})
);
```Last updated