From 8309bb113f21255ba6d7ba5c9bff0a6b5c1af711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Rosales?= Date: Wed, 23 Aug 2023 00:04:37 -0600 Subject: [PATCH] fix: use standard uppercase name for README.md --- services/voting-node/Earthfile | 4 ++-- services/voting-node/{readme.md => README.md} | 0 services/voting-node/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename services/voting-node/{readme.md => README.md} (100%) diff --git a/services/voting-node/Earthfile b/services/voting-node/Earthfile index ac2ebf0b89..052cb05614 100644 --- a/services/voting-node/Earthfile +++ b/services/voting-node/Earthfile @@ -44,7 +44,7 @@ install-deps: RUN poetry install --only main --no-root # Copy the voting_node source code - COPY --dir voting_node readme.md ./ + COPY --dir voting_node README.md ./ SAVE ARTIFACT .venv .venv SAVE IMAGE --cache-hint @@ -66,7 +66,7 @@ build-dev: FROM +install-deps RUN poetry install COPY tests tests - COPY readme.md leader0-schedule.md snapshot-data.md . + COPY README.md leader0-schedule.md snapshot-data.md . # Copy the rest of the application code to the container COPY ../../src/jormungandr/jormungandr+build/jormungandr /app/jormungandr diff --git a/services/voting-node/readme.md b/services/voting-node/README.md similarity index 100% rename from services/voting-node/readme.md rename to services/voting-node/README.md diff --git a/services/voting-node/pyproject.toml b/services/voting-node/pyproject.toml index 2ce67b5192..368b3c0fbc 100644 --- a/services/voting-node/pyproject.toml +++ b/services/voting-node/pyproject.toml @@ -4,7 +4,7 @@ version = "0.0.1" description = "" authors = ["Catalyst Core Developers "] license = "MIT or Apache License 2.0" -readme = "readme.md" +readme = "README.md" packages = [{include = "voting_node"}] [build-system]