upload all config dependencies to cache #124
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: | |
| - "v*" | |
| env: | |
| BRANCH_NAME: ${{ github.ref_name }} | |
| jobs: | |
| build-and-upload: | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| matrix: | |
| runner: | |
| - ubuntu-24.04 | |
| - ubuntu-24.04-arm | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Connect to Cachix | |
| uses: cachix/cachix-action@v14 | |
| with: | |
| name: openmesh | |
| authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| - name: Use config from branch | |
| run: sed -i -e "s|\"github:Openmesh-Network/xnodeos\"|\"github:Openmesh-Network/xnodeos/${BRANCH_NAME}\"|g" ./config/flake.nix | |
| - name: Set system | |
| run: sed -i "s/x86_64/$(uname -m)/" ./config/xnode-config/hardware | |
| - name: Build XnodeOS default config | |
| run: nix build ./config#nixosConfigurations.xnode.config.system.build.toplevel --accept-flake-config --fallback | |
| - name: Upload all config dependencies to Cachix | |
| run: nix path-info --recursive ./result | cachix push openmesh |