Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat: add d2 diagrams support #6

feat: add d2 diagrams support

feat: add d2 diagrams support #6

Workflow file for this run

name: "Deploy binary cache"
on:
push:
branches:
- "main"
- "master"
paths:
- "src/**"
- "patches/**"
- "queries/**"
- "Cargo.*"
- "flake.*"
env:
CACHE_NAME: "reciperium"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v6
- name: Install nix
uses: DeterminateSystems/nix-installer-action@main
- name: Cache build artifacts
uses: DeterminateSystems/flakehub-cache-action@main
- uses: cachix/cachix-action@v16
with:
name: ${{ env.CACHE_NAME }}
# If you chose API tokens for write access OR if you have a private cache
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Build default package
run: |
nix build --no-link --print-out-paths | cachix push ${{ env.CACHE_NAME }}