Skip to content

Updated flake

Updated flake #101

name: "build-sync-npm-git-dependencies-with-nix"
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches: [ main, main-0.4 ]
pull_request:
branches: [ main, main-0.4 ]
jobs:
build-sync-npm-git-dependencies-with-nix:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-13]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
nix_path: nixpkgs=channel:nixos-24.05
- uses: cachix/cachix-action@v15
with:
name: holochain-ci
- uses: cachix/cachix-action@v15
with:
name: darksoil-studio
- name: Build sync-npm-git-dependencies-with-nix
env:
CACHIX_AUTH_TOKEN: "${{ secrets.DARKSOIL_CACHIX_AUTH_TOKEN }}"
run: |
cachix watch-exec darksoil-studio -- nix build --no-update-lock-file --accept-flake-config -L .#sync-npm-git-dependencies-with-nix
cachix push darksoil-studio $(nix path-info --json --accept-flake-config --no-warn-dirty .#sync-npm-git-dependencies-with-nix | nix run nixpkgs#jq -- -r 'keys[0]')
- name: Pin sync-npm-git-dependencies-with-nix
if: github.event_name != 'pull_request' && github.ref_name == 'main'
env:
CACHIX_AUTH_TOKEN: "${{ secrets.DARKSOIL_CACHIX_AUTH_TOKEN }}"
run: |
cachix pin darksoil-studio sync-npm-git-dependencies-with-nix $(nix path-info --json --accept-flake-config --no-warn-dirty .#sync-npm-git-dependencies-with-nix | nix run nixpkgs#jq -- -r 'keys[0]')