From d21223120bd7c7d08251e50c6168c06951cef759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Tue, 27 Feb 2024 19:22:43 +0100 Subject: [PATCH] Hotfix the workdir in the Git tagging job of the PyPI publishing workflow It was referring to a non-existing directory, not taking into account the the previously used checkout action puts everything into the current directory already. --- .github/workflows/ansible-release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ansible-release.yml b/.github/workflows/ansible-release.yml index a83bd05b2d..74fc2c142f 100644 --- a/.github/workflows/ansible-release.yml +++ b/.github/workflows/ansible-release.yml @@ -141,7 +141,6 @@ jobs: ref: ${{ github.event.repository.default_branch }} - name: Create git tag - working-directory: ansible-build-data run: | git config --global user.name "Github Actions" git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"