steps: - name: build image: nixos/nix commands: - echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf - nix build - nix flake show when: event: [push, pull_request] - name: deploy image: nixos/nix commands: - echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf - nix build - nix flake show - ls public - wrangler pages deploy public --branch=$CI_COMMIT_SOURCE_BRANCH --project-name=softinio - echo "Deploy complete" depends_on: [build] when: event: push branch: test1