Compare commits
1 commit
74fd95ceff
...
d35d707490
Author | SHA1 | Date | |
---|---|---|---|
d35d707490 |
2 changed files with 4 additions and 22 deletions
|
@ -6,6 +6,7 @@ on:
|
||||||
- main
|
- main
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1,3,5"
|
- cron: "0 0 * * 1,3,5"
|
||||||
|
workflow_dispatch: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -17,7 +18,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: pre-requisites
|
- name: pre-requisites
|
||||||
run: |
|
run: |
|
||||||
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
|
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
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
@ -25,7 +26,7 @@ jobs:
|
||||||
- name: nix package names
|
- name: nix package names
|
||||||
id: pkgs
|
id: pkgs
|
||||||
run: |
|
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
|
- name: build
|
||||||
uses: actions/nix/build@main
|
uses: actions/nix/build@main
|
||||||
with:
|
with:
|
||||||
|
@ -33,4 +34,4 @@ jobs:
|
||||||
out-link: ${{ steps.pkgs.outputs.pkgs-name }}
|
out-link: ${{ steps.pkgs.outputs.pkgs-name }}
|
||||||
- name: load image into docker
|
- name: load image into docker
|
||||||
run: |
|
run: |
|
||||||
podman load < ${{ steps.pkgs.outputs.pkgs-name }}
|
docker load < ${{ steps.pkg.outputs.pkg-name }}
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
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
|
|
Loading…
Add table
Reference in a new issue