Compare commits
3 commits
fe08fdd7bb
...
ac5b7f3a10
Author | SHA1 | Date | |
---|---|---|---|
ac5b7f3a10 | |||
d068247797 | |||
0ecf9ad46f |
3 changed files with 11 additions and 2 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use nix
|
4
.github/workflows/hugo.yml
vendored
4
.github/workflows/hugo.yml
vendored
|
@ -30,8 +30,8 @@ jobs:
|
|||
build:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
HUGO_VERSION: 0.108.0
|
||||
NODE_VERSION: 18.12.1
|
||||
HUGO_VERSION: 0.111.3
|
||||
NODE_VERSION: 18.14.2
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
|
8
default.nix
Normal file
8
default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/994e2ef9e9c70b4dd7257f73452a94e871723685.tar.gz") {} }:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = [
|
||||
pkgs.hugo
|
||||
pkgs.nodejs
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue