Skip to content

Commit

Permalink
Remove set Authorino dirty when building in remote
Browse files Browse the repository at this point in the history
In remote, right after checking out the code, it cannot ever be dirty.

Signed-off-by: Guilherme Cassolato <guicassolato@gmail.com>
  • Loading branch information
guicassolato committed Sep 12, 2024
1 parent 9e0d5ab commit b536533
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b536533

Please sign in to comment.