2024-02-10 18:04:44 -08:00
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: nixos/nix
|
|
|
|
commands:
|
|
|
|
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
|
2024-02-17 11:06:29 -08:00
|
|
|
- nix profile install nixpkgs#gnused --impure
|
2024-02-17 11:12:45 -08:00
|
|
|
- sed --in-place=orig 's/base_url = "https:\\/\\/www.softinio.com"/base_url = "https:\\/\\/${CI_COMMIT_SOURCE_BRANCH}.softinio.com"/' ./config.toml
|
2024-02-10 18:04:44 -08:00
|
|
|
- nix build
|
|
|
|
- nix flake show
|
|
|
|
- ls result
|
|
|
|
- nix develop --command wrangler pages deploy result --branch=$CI_COMMIT_SOURCE_BRANCH --project-name=softinio --commit-dirty=true
|
|
|
|
secrets: [ cloudflare_account_id, cloudflare_api_token ]
|
|
|
|
when:
|
|
|
|
event: [push, pull_request]
|
|
|
|
branch:
|
|
|
|
exclude: [ main ]
|
|
|
|
|
|
|
|
- name: deploy
|
|
|
|
image: nixos/nix
|
|
|
|
commands:
|
|
|
|
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
|
|
|
|
- nix build
|
|
|
|
- nix develop --command wrangler pages deploy result --project-name=softinio --commit-dirty=true
|
|
|
|
secrets: [ cloudflare_account_id, cloudflare_api_token ]
|
|
|
|
when:
|
|
|
|
event: push
|
|
|
|
branch: main
|
|
|
|
|