From 51d4d4c1331326022a9738ff863c607303472bbc Mon Sep 17 00:00:00 2001 From: Judah Meek Date: Tue, 8 Apr 2025 16:56:42 -0500 Subject: [PATCH 1/2] test --- client/app/bundles/comments/components/Footer/Footer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/bundles/comments/components/Footer/Footer.jsx b/client/app/bundles/comments/components/Footer/Footer.jsx index 4f18d074..94e98162 100644 --- a/client/app/bundles/comments/components/Footer/Footer.jsx +++ b/client/app/bundles/comments/components/Footer/Footer.jsx @@ -14,7 +14,7 @@ export default class Footer extends BaseComponent {
- Rails On Maui on X/Twitter + Rails On Maui on Twitter
From fef2c405eab6e443654ee778d47bbcb6afc9af0a Mon Sep 17 00:00:00 2001 From: Judah Meek Date: Tue, 8 Apr 2025 23:59:21 -0500 Subject: [PATCH 2/2] add debug logs --- .controlplane/Dockerfile | 9 +++++++++ .github/actions/build-docker-image/action.yml | 2 ++ 2 files changed, 11 insertions(+) diff --git a/.controlplane/Dockerfile b/.controlplane/Dockerfile index 8a809700..8462f8e6 100644 --- a/.controlplane/Dockerfile +++ b/.controlplane/Dockerfile @@ -46,6 +46,11 @@ RUN yarn install --frozen-lockfile # Copy application code COPY . . +RUN echo "ZYXYZYXYZ" + +RUN ls -l +RUN ls -l app + # Final stage for app image FROM base @@ -58,6 +63,10 @@ RUN apt-get update -qq && \ COPY --from=build /usr/local/bundle /usr/local/bundle COPY --from=build /app /app +RUN ls -l app + +RUN cat /app/client/app/bundles/comments/components/Footer/Footer.jsx + RUN chmod +x /app/.controlplane/*.sh ENV RAILS_ENV=production \ diff --git a/.github/actions/build-docker-image/action.yml b/.github/actions/build-docker-image/action.yml index 45a12434..04b4e446 100644 --- a/.github/actions/build-docker-image/action.yml +++ b/.github/actions/build-docker-image/action.yml @@ -28,6 +28,8 @@ runs: fi echo "🏗️ Building Docker image${PR_INFO} (commit ${{ inputs.commit }})..." + + /usr/bin/git log -1 --format=%H if cpflow build-image -a "${{ inputs.app_name }}" --commit="${{ inputs.commit }}" --org="${{ inputs.org }}"; then image_tag="${{ inputs.org }}/${{ inputs.app_name }}:${{ inputs.commit }}"