Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

build: SAVE naming matches COPY #105

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,19 @@ fix-go-formatting:
DO +INSTALL_DEPENDENCIES
DO +COPY_SOURCECODE
RUN ./ci/fix-go-formatting.sh
SAVE ARTIFACT "./src" AS LOCAL "./src"
SAVE ARTIFACT "src/" AS LOCAL "src/"


fix-shell-formatting:
FROM +sh-formatting-base
RUN ./ci/fix-shell-formatting.sh
SAVE ARTIFACT "./ci" AS LOCAL "./ci"
SAVE ARTIFACT "ci/" AS LOCAL "ci/"


fix-yaml-formatting:
FROM +yaml-formatting-base
RUN ./ci/fix-yaml-formatting.sh
SAVE ARTIFACT "./.github" AS LOCAL "./.github"
SAVE ARTIFACT ".github/" AS LOCAL ".github/"


fix-formatting:
Expand Down Expand Up @@ -182,7 +182,7 @@ compile:
DO +INSTALL_DEPENDENCIES
DO +COPY_SOURCECODE
RUN ./ci/compile.sh
SAVE ARTIFACT "dist" AS LOCAL "dist"
SAVE ARTIFACT "dist/" AS LOCAL "dist/"
SAVE ARTIFACT "go.sum" AS LOCAL "go.sum"


Expand Down
Loading