Skip to content

correction of install file #15

correction of install file

correction of install file #15

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
name: Make website
runs-on: ubuntu-latest
steps:
- name: Guix Cache
uses: actions/cache@v4
with:
path: ~/.cache/guix
# use a key that (almost) never matches
key: guix-cache-${{ github.sha }}
restore-keys: |
guix-cache-
# Cannot use a cache for /gnu/store, since restore fails
- name: Install GNU Guix
uses: PromyLOPh/guix-install-action@v1.5
with:
pullAfterInstall: false
- name: Check out repository code
uses: actions/checkout@v4
- name: build site
run: guix shell -m manifest.scm -- emacs -Q --batch -l install.el -l publish.el
working-directory: ${{ github.workspace }}