From e1be46c6b3efc2c6bc7a33940a641e9547937234 Mon Sep 17 00:00:00 2001 From: Bastian Krol Date: Fri, 2 Feb 2024 10:22:39 +0100 Subject: [PATCH] [dash0] fix release workflow --- .github/workflows/release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a85b6b1e66..8329aa94c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,11 @@ jobs: # do not run multiple deployment jobs concurrently concurrency: deploy steps: + - name: checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: deploy release uses: ./.github/actions/deploy-demo with: @@ -29,9 +34,17 @@ jobs: containerImageVersion: ${{ github.event.release.tag_name }} update-release-in-env-file: + name: update .env file + needs: + - deploy_release runs-on: ubuntu-latest concurrency: update-env-file steps: + - name: checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: update .env file uses: ./.github/actions/update-env-file with: