Skip to content

Commit

Permalink
ci: init
Browse files Browse the repository at this point in the history
  • Loading branch information
thecaralice committed Sep 29, 2024
1 parent 6504e57 commit a5cf9c5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cachix-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Push to cachix"
on:
pull_request:
push:
jobs:
build:
strategy:
matrix:
include:
- os: macos-14
double: aarch64-darwin
- os: macos-13
double: x86_64-darwin
- os: ubuntu-24.04
double: x86_64-linux
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v29
- uses: cachix/cachix-action@v15
with:
name: trieve
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: |
nix build .#packages.${{ matrix.double }}.server .#packages.${{ matrix.double }}.frontends

0 comments on commit a5cf9c5

Please sign in to comment.