From b536533ba39cc54c1cb1331f0cd31d000465ee28 Mon Sep 17 00:00:00 2001 From: Guilherme Cassolato Date: Thu, 12 Sep 2024 12:09:16 +0200 Subject: [PATCH] Remove set Authorino dirty when building in remote In remote, right after checking out the code, it cannot ever be dirty. Signed-off-by: Guilherme Cassolato --- .github/workflows/build-images.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/build-images.yaml b/.github/workflows/build-images.yaml index 333dd516..1d987b28 100644 --- a/.github/workflows/build-images.yaml +++ b/.github/workflows/build-images.yaml @@ -42,16 +42,6 @@ jobs: echo "version=${{ github.ref_name }}" >> $GITHUB_ENV fi echo "git_sha=${{ github.sha }}" >> $GITHUB_ENV - - name: Set Authorino Dirty - id: authorino-dirty - run: | - GIT_DIRTY=$(git diff --stat); \ - if [ -n "$GIT_DIRTY" ]; then \ - dirty="true"; \ - else \ - dirty="false"; \ - fi; \ - echo "dirty=$dirty" >> $GITHUB_ENV - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Build Image