Skip to content

switch back to upstream xremap-flake #1

switch back to upstream xremap-flake

switch back to upstream xremap-flake #1

Workflow file for this run

name: "Nix Deploy"
on:
push:
tags:
- "v*"
env:
CACHIX_AUTH_TOKEN: "${{ secrets.CACHIX_AUTH_TOKEN }}"
CACHIX_ACTIVATE_TOKEN: "${{ secrets.CACHIX_ACTIVATE_TOKEN }}"
jobs:
deploy:
strategy:
matrix:
target:
- bastion
- voyager
- quasar
# - deck
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: true
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Run the magic nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v14
with:
name: gabedunn
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix run '.#deploy' ${{ matrix.target }}