Compare commits

..

8 commits

2 changed files with 22 additions and 4 deletions
.forgejo/workflows

View file

@ -6,7 +6,6 @@ on:
- main
schedule:
- cron: "0 0 * * 1,3,5"
workflow_dispatch: {}
jobs:
build:
@ -18,7 +17,7 @@ jobs:
steps:
- name: pre-requisites
run: |
nix-env -iA nixpkgs.docker nixpkgs.nodejs_20 nixpkgs.gnused nixpkgs.coreutils && mkdir -p ~/.config/nix && echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf
nix-env -iA nixpkgs.docker nixpkgs.podman nixpkgs.nodejs_20 nixpkgs.gnused nixpkgs.coreutils && mkdir -p ~/.config/nix && echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf
- name: checkout
uses: actions/checkout@v4
with:
@ -26,7 +25,7 @@ jobs:
- name: nix package names
id: pkgs
run: |
echo "pkgs-name=${{ matrix.container }}-${{ matrix.version }}" | tr -d . >>"${GITHUB_OUTPUT}""
echo "pkgs-name=${{ matrix.container }}-${{ matrix.version }}" | tr -d . >>"${GITHUB_OUTPUT}"
- name: build
uses: actions/nix/build@main
with:
@ -34,4 +33,4 @@ jobs:
out-link: ${{ steps.pkgs.outputs.pkgs-name }}
- name: load image into docker
run: |
docker load < ${{ steps.pkg.outputs.pkg-name }}
podman load < ${{ steps.pkgs.outputs.pkgs-name }}

View file

@ -0,0 +1,19 @@
name: scheduled flake.lock update
on:
schedule:
- cron: "0 0 * * 0,2,4"
workflow_dispatch: {}
jobs:
flake-lock-update:
runs-on: nixos-latest
steps:
- run: nix-env -iA nixpkgs.nodejs_20 nixpkgs.gnused nixpkgs.coreutils
- run: mkdir -p ~/.config/nix && echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf
- uses: actions/checkout@v4
with:
ref: 'main'
- uses: actions/nix-flake-update-pr.git@main
with:
token: ${{ secrets.FORGEJO_PR_TOKEN }}
author-email: flake@flyinggecko.org