Compare commits

..

8 commits

Author SHA1 Message Date
74fd95ceff Add renovate.json 2025-02-06 16:26:42 +01:00
feed48538c Actions: try podman for publishing
Some checks failed
build and publish containers / build (nixos, 24.11) (push) Failing after 1s
build and publish containers / build (nixos, unstable) (push) Failing after 1s
2025-02-06 16:25:52 +01:00
f046eb6555 Actions: publish - fixup
Some checks failed
build and publish containers / build (nixos, 24.11) (push) Failing after 2m32s
build and publish containers / build (nixos, unstable) (push) Failing after 3m10s
2025-02-06 16:11:28 +01:00
6ce89c3c2d Actions: fixup " to much
Some checks failed
build and publish containers / build (nixos, 24.11) (push) Failing after 2m42s
build and publish containers / build (nixos, unstable) (push) Failing after 2m37s
2025-02-06 16:04:55 +01:00
cfa9fcad70 Actions: fixup action location
Some checks failed
build and publish containers / build (nixos, 24.11) (push) Failing after 43s
build and publish containers / build (nixos, unstable) (push) Failing after 40s
2025-02-06 16:03:46 +01:00
513615c6eb Actions: Add flake update action
Some checks failed
build and publish containers / build (nixos, 24.11) (push) Failing after 13s
build and publish containers / build (nixos, unstable) (push) Failing after 13s
2025-02-06 15:40:27 +01:00
d3ac56c8c4 Actions: don't run publish manually 2025-02-06 15:40:08 +01:00
f337d7e8c1 fix: use full path for nix action for now
Some checks failed
build and publish containers / build (nixos, 24.11) (push) Failing after 23s
build and publish containers / build (nixos, unstable) (push) Failing after 15s
2025-02-06 15:37:16 +01:00
2 changed files with 22 additions and 4 deletions

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