diff --git a/.forgejo/workflows/main.yaml b/.forgejo/workflows/main.yaml new file mode 100644 index 0000000..7993b4c --- /dev/null +++ b/.forgejo/workflows/main.yaml @@ -0,0 +1,19 @@ +on: [push] +env: + HUGO_VERSION: 0.79.0 +jobs: + build: + runs-on: docker + container: + image: docker.io/node:20-alpine + steps: + - run: | + apk add --no-cache wget ca-certificates git + wget -O hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v${{ env.HUGO_VERSION }}/hugo_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz + tar xzf hugo.tar.gz hugo + - uses: actions/checkout@v4 + - run: ./hugo --minify + - uses: actions/upload-artifact@v3 + with: + name: public + path: public/ diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..235ac79 --- /dev/null +++ b/flake.lock @@ -0,0 +1,61 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1726560853, + "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1726838390, + "narHash": "sha256-NmcVhGElxDbmEWzgXsyAjlRhUus/nEqPC5So7BOJLUM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "944b2aea7f0a2d7c79f72468106bc5510cbf5101", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-24.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..bce7838 --- /dev/null +++ b/flake.nix @@ -0,0 +1,20 @@ +{ + description = "libre.sh SCIM website"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; + inputs.flake-utils.url = "github:numtide/flake-utils"; + + outputs = { self, nixpkgs, flake-utils }: + flake-utils.lib.eachDefaultSystem (system: + let pkgs = nixpkgs.legacyPackages.${system}; + in { + packages.website = pkgs.stdenv.mkDerivation { + name = "website"; + src = self; + buildPhase = "${pkgs.hugo}/bin/hugo --minify"; + installPhase = "cp -r public $out"; + }; + + defaultPackage = self.packages.${system}.website; + devShells.default = pkgs.mkShell { packages = [ pkgs.hugo ]; }; + }); +}