chore(docs): update and cleanup some things so build doesn't fail (#456) #359
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: synth public cachix | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
cachix: | |
name: synth public cachix | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install nix | |
uses: cachix/install-nix-action@v20 | |
- name: Setup cachix | |
uses: cachix/cachix-action@v12 | |
with: | |
name: getsynth | |
authToken: ${{ secrets.CACHIX_TOKEN }} | |
- name: Build synth | |
run: nix-build tools/nix/install.nix --argstr ref $GITHUB_REF --argstr rev $GITHUB_SHA |