serve astro assets directly through nginx and optimize script loading… #47
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: Cache | |
| on: | |
| push: | |
| branches: | |
| - cache | |
| jobs: | |
| build-and-upload: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-25.11 | |
| - name: Connect to Cachix | |
| uses: cachix/cachix-action@v14 | |
| with: | |
| name: openmesh | |
| authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| - name: Upload Xnode Auth package to Cachix | |
| run: nix build --accept-flake-config --print-out-paths | cachix push openmesh |