diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fdf6907..f880cf5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,11 +17,15 @@ jobs: - name: Install Nix uses: DeterminateSystems/determinate-nix-action@v3 - - name: Setup FlakeHub Cache - uses: DeterminateSystems/flakehub-cache-action@main - - - name: Check Nix flake - uses: DeterminateSystems/flake-checker-action@main + - name: Setup Nix store cache + uses: actions/cache@v4 + with: + path: | + ~/.cache/nix + ~/nix-store-cache + key: ${{ runner.os }}-nix-${{ hashFiles('flake.lock') }} + restore-keys: | + ${{ runner.os }}-nix- - name: Build site (pull request) if: github.event_name == 'pull_request' diff --git a/wrangler.toml b/wrangler.toml index 254213f..c751984 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -1,3 +1,2 @@ name = "softinio" pages_build_output_dir = "./dist" -route = { pattern = "https://www.softinio.com", custom_domain = true }