style: move push action to new dir so github and gitea can share it
Some checks failed
Check / check (push) Failing after 0s

This commit is contained in:
2025-05-17 04:03:37 -04:00
parent e20156a2de
commit f9245c4145
8 changed files with 112 additions and 144 deletions

21
.actions/init/action.yaml Normal file
View File

@ -0,0 +1,21 @@
name: "initialize"
description: "install nix & use cachix"
inputs:
token:
description: "cachix auth token"
required: true
runs:
using: "composite"
steps:
- name: install nix
uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: use cachix
uses: cachix/cachix-action@v16
with:
name: trevstack
authToken: "${{ inputs.token }}"