Move the chat example to moq-native. (#640) #1
Workflow file for this run
This file contains hidden or 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: Cachix | |
| on: | |
| push: | |
| tags: | |
| - 'moq-relay-v*' | |
| - 'moq-token-cli-v*' | |
| - 'hang-cli-v*' | |
| jobs: | |
| cache: | |
| name: Build and push to Cachix | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@main | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: kixelated | |
| authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| - run: nix build ./rs --print-build-logs | |
| - run: cachix push kixelated ./result |