Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | /**
* Forgejo CI Configurator
*
* Generates Forgejo Actions workflow files for Hugo site builds.
* Forgejo Actions are compatible with GitHub Actions format but use different directories.
* Also works with Gitea.
*/
import path from 'path';
import fs from 'fs-extra';
/**
* Forgejo Actions CI Configurator
*/
export class ForgejoCIConfigurator {
getName() {
return 'Forgejo Actions';
}
async writeWorkflow(destinationPath, options) {
const hugoVersion = options.hugoVersion || '0.81.0';
const baseUrlArg = options.overrideBaseURL ? `--baseURL ${options.overrideBaseURL}` : '';
// Forgejo Actions use GitHub Actions-compatible syntax
// but are placed in .forgejo/workflows/ directory
const yaml = `name: Hugo Build and Deploy
on:
push:
branches:
- ${options.branch}
jobs:
deploy:
runs-on: docker
container:
image: klakegg/hugo:${hugoVersion}-ext-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Build
run: hugo --minify ${baseUrlArg}
- name: Deploy to Pages
uses: actions/upload-pages-artifact@v2
with:
path: ./public
`;
// Forgejo uses .forgejo/workflows, but also supports .gitea/workflows
await fs.ensureDir(path.join(destinationPath, '.forgejo', 'workflows'));
await fs.writeFile(path.join(destinationPath, '.forgejo', 'workflows', 'hugo-build.yml'), yaml, 'utf-8');
}
}
|