From 030ffdaee1713a035a37f70e3e7927099ba115f4 Mon Sep 17 00:00:00 2001 From: Tim Walter Date: Tue, 10 Sep 2024 13:26:39 +0200 Subject: [PATCH] Install git before the checkout to use it instead of a download Signed-off-by: Tim Walter --- .github/workflows/publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 17bfed4..15dea04 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -22,15 +22,15 @@ jobs: image: python:3.12-alpine steps: + - name: Install git + run: apk add git + - name: Checkout Repository uses: actions/checkout@v4 - name: Install Poetry run: pip install poetry - - name: Install git - run: apk add git - - name: Add Poetry plugin run: poetry self add "poetry-dynamic-versioning[plugin]"