From 61761d9fee0470fa0c54cd62f85455311be899dc Mon Sep 17 00:00:00 2001 From: glokta1 Date: Thu, 2 Mar 2023 19:17:56 +0530 Subject: [PATCH] temp: print github context vars --- .github/workflows/build-and-deploy.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index de209124..d51ce4c6 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -131,3 +131,15 @@ jobs: - name: Deploy if: (github.event_name == 'repository_dispatch') || (github.event_name == 'push' && github.ref == 'refs/heads/main') run: make deploy-windows-packages + update-lifecycle-version: + name: Update lifecycle version of sample builders + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + - name: Update lifecycle version + run: echo ${{ github.event.client_payload.version }} + - name: Check event event_name + run: echo ${{ github.event_name }} + +