mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 04:58:26 +00:00
Gabriel Arazas
aedcac2777
This enables updating post without interrupting the webring which is supposed to stay for a week.
15 lines
329 B
YAML
15 lines
329 B
YAML
name: "Update webring"
|
|
on:
|
|
schedule:
|
|
# Every Sunday.
|
|
- cron: '0 0 * * 0'
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v17
|
|
with:
|
|
nix_path: nixpkgs=channel:nixpkgs-unstable
|
|
- run: nix develop -c make build-openring
|