From 23e67551b301b30a1836f37dfcd64ab8da8e171c Mon Sep 17 00:00:00 2001 From: Xyon Date: Mon, 25 Sep 2023 23:12:18 +0100 Subject: [PATCH] Switch to HTTPS for pulling manifold to bypass an SSH limitation --- .gitea/workflows/deploy.yaml | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 4039709..bffe291 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -12,6 +12,6 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Build (Release) - run: cargo build --release + run: cargo build --release --color=always - name: Deploy run: bash cicd/deploy.sh diff --git a/Cargo.lock b/Cargo.lock index 7d5f71b..14fcf52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1095,7 +1095,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "manifold" version = "4.0.0" -source = "git+ssh://git@code.orbiter-radio.uk/discord/manifold.git#3d712fdcb32f4a6269d12b25b10371e1c307e272" +source = "git+https://code.orbiter-radio.uk/discord/manifold.git#3d712fdcb32f4a6269d12b25b10371e1c307e272" dependencies = [ "built", "chrono", diff --git a/Cargo.toml b/Cargo.toml index a3fbf90..d13da2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ diesel = { version = "2.1.0", features = ["sqlite", "r2d2", "chrono"] } diesel_migrations = "2.1.0" env_logger = "0.10.0" log = "0.4.20" -manifold = { git = "ssh://git@code.orbiter-radio.uk/discord/manifold.git" } +manifold = { git = "https://code.orbiter-radio.uk/discord/manifold.git" } # manifold = { path = "/home/xyon/Workspace/manifold/" } poise = { version = "0.5.*", features = [ "cache" ] } rand = { version = "0.8.5", features = [ "small_rng" ] }