From 73e101a584ff50e585f5cc31365670abecba9234 Mon Sep 17 00:00:00 2001 From: "Gregory N. Schmit" Date: Sat, 6 Apr 2024 18:54:25 -0500 Subject: [PATCH] Inspect .env file in prod. --- .github/workflows/pipeline.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 240004d..3303a47 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -71,6 +71,8 @@ jobs: bundler-cache: true - name: Write out .env file run: echo "PRODUCTION_KEY=${{ secrets.PRODUCTION_KEY }}" > .env + - name: Display .env file + run: cat .env - name: Build and deploy using Kamal env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}