From fbd901463a67165cbbc423b8e836322a053a1a4f Mon Sep 17 00:00:00 2001 From: Liam Monninger <79056955+l-monninger@users.noreply.github.com> Date: Mon, 4 Dec 2023 10:04:20 -0800 Subject: [PATCH 1/2] fix: 0.2.x CLI now expects libpq --- docker/cli.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/cli.dockerfile b/docker/cli.dockerfile index 4ba5dc3e..2ec91bc2 100644 --- a/docker/cli.dockerfile +++ b/docker/cli.dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:latest ARG VERSION=0.0.0 # Update package list and install curl -RUN apt-get update && apt-get install -y curl wget +RUN apt-get update && apt-get install -y curl wget git libpq-dev # Download the script RUN curl -fSsL -o install.sh https://raw.githubusercontent.com/movemntdev/M1/main/scripts/install.sh @@ -14,4 +14,4 @@ RUN chmod +x install.sh # Execute the script with the desired arguments RUN ./install.sh --version ${VERSION} -CMD ["/bin/bash"] \ No newline at end of file +CMD ["/bin/bash"] From 7b3bd401e8afbe75f568fa9efef3413bdab5c487 Mon Sep 17 00:00:00 2001 From: Liam Monninger <79056955+l-monninger@users.noreply.github.com> Date: Mon, 4 Dec 2023 11:01:17 -0800 Subject: [PATCH 2/2] cicd: debugging release --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d97203b..602930d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: # branches: # - main workflow_run: - workflows: ["Cargo Test"] + workflows: ["Cargo Check"] types: - completed