From db20d33546ce161c64c4c8a0dc1cfc0da42b82a7 Mon Sep 17 00:00:00 2001 From: kilianp14 Date: Tue, 6 Feb 2024 13:25:51 +0100 Subject: [PATCH] switched poetry installation and python setup in publishing workflow --- .github/workflows/publishing.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publishing.yml b/.github/workflows/publishing.yml index 97b08be2..4ffb4670 100644 --- a/.github/workflows/publishing.yml +++ b/.github/workflows/publishing.yml @@ -19,16 +19,16 @@ jobs: - name: Fetch all history for all tags and branches run: git fetch --prune --unshallow + - name: Install poetry + uses: snok/install-poetry@v1 + - run: poetry config virtualenvs.prefer-active-python true + - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.8' cache: 'poetry' - - name: Install poetry - uses: snok/install-poetry@v1 - - run: poetry config virtualenvs.prefer-active-python true - - name: Install poetry dynamic version plugin, extracts version number from git tag run: | pip install poetry-version-plugin