Skip to content

Update README.md

Update README.md #23

Workflow file for this run

name: "CD"
on:
pull_request:
push:
jobs:
CD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v14
with:
name: suyashtnt
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: cachix use helix
- run: cachix use niri
- run: cachix use fortuneteller2k
- run: cachix use nix-community
- run: nix build -L
- name: Deploy
if: github.ref == 'refs/heads/main'
env:
CACHIX_ACTIVATE_TOKEN: "${{ secrets.CACHIX_ACTIVATE_TOKEN }}"
run: |
cachix push suyashtnt ./result
cachix deploy activate ./result