Skip to content

Merge pull request #102 from wagdav/dependabot/github_actions/cachix/… #269

Merge pull request #102 from wagdav/dependabot/github_actions/cachix/…

Merge pull request #102 from wagdav/dependabot/github_actions/cachix/… #269

# yamllint disable rule:line-length
---
name: "Build and Deploy"
on: # yamllint disable-line rule:truthy
workflow_dispatch: # allows manual triggering
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
environment:
name: Homelab
url: "https://app.cachix.org/deploy/workspace/lab.thewagner.home/"
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: "extra-platforms = aarch64-linux"
- uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16
with:
name: wagdav
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Check
run: nix flake check
- name: Build
run: nix build --print-build-logs .#cachix-deploy-spec
- name: Deploy
if: github.ref == 'refs/heads/master'
env:
CACHIX_ACTIVATE_TOKEN: "${{ secrets.CACHIX_ACTIVATE_TOKEN }}"
run: |
cachix push wagdav ./result
cachix deploy activate --async ./result