merge queue: embarking main (dfb47d4), #1408 and #1409 together #3706
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: "artifact-build" | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| cloudflare_project: noogle | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: nix-community | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - run: nix build .#ui -L | |
| - name: Save output | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: ./result |