dev #2

Open
tdpeuter wants to merge 43 commits from dev into main
Showing only changes of commit 478ace7bb4 - Show all commits

View file

@ -19,12 +19,15 @@ jobs:
- uses: https://github.com/cachix/install-nix-action@v31 - uses: https://github.com/cachix/install-nix-action@v31
with: with:
nix_path: nixpkgs=channel:nixos-unstable nix_path: nixpkgs=channel:nixos-unstable
- name: "List hosts" - name: "Determine hosts"
id: hosts id: hosts
run: | run: |
hosts="$(nix eval .#nixosConfigurations --apply builtins.attrNames --json)" hosts="$(nix eval .#nixosConfigurations --apply builtins.attrNames --json)"
echo "${hosts}" echo "${hosts}"
echo "hostnames=${hosts}" >> $GITHUB_OUTPUT echo "hostnames=${hosts}" >> $GITHUB_OUTPUT
- name: "List hosts"
run: |
echo "${{ steps.hosts.outputs.hostnames }}"
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest