From 9e465bcd05339c2a9e71ab40728d4ebc62cd5c65 Mon Sep 17 00:00:00 2001 From: Kegan Maher Date: Tue, 19 Sep 2023 10:48:50 -0700 Subject: [PATCH] chore(deploy): pip freeze to a static file similar to having the SHA, will help confirm changes and debug --- .github/workflows/deploy.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e9625fb066..a404e8d245 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,8 +22,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Write commit SHA to file - run: echo "${{ github.sha }}" >> benefits/static/sha.txt + - name: Write app metadata to static files + run: | + echo "${{ github.sha }}" >> benefits/static/sha.txt + pip freeze >> benefits/static/requirements.txt - name: Docker Login to GitHub Container Registry uses: docker/login-action@v3