From 48419ca8bcccfb9d4670a29c5b1fb73c10312d0c Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 2 Aug 2024 08:06:09 -0700 Subject: [PATCH] add step to ghcr deploy --- .github/workflows/ghcr_deploy.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ghcr_deploy.yml b/.github/workflows/ghcr_deploy.yml index 51e24f856..f8064cf47 100644 --- a/.github/workflows/ghcr_deploy.yml +++ b/.github/workflows/ghcr_deploy.yml @@ -21,6 +21,14 @@ env: # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: + # print commit hash, tag, and release type + print: + runs-on: ubuntu-latest + steps: + - run: | + echo "Commit hash: ${{ github.event.inputs.commit_hash }}" + echo "Tag: ${{ github.event.inputs.tag }}" + echo "Release type: ${{ github.event.inputs.release_type }}" docker-hub-deploy: if: github.repository == 'BerriAI/litellm' runs-on: ubuntu-latest