From 637d53c3d7860682b7ec863c4ca411da51a2385f Mon Sep 17 00:00:00 2001 From: Mads Bisgaard <126242332+bisgaard-itis@users.noreply.github.com> Date: Mon, 6 Nov 2023 23:46:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(#113)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update workflow before publishing python package * fix dependency issue and bump version * point to website in project description * fix broken dependency * improve doc * add github token to download artifacts * ensure only read-access @wvangeit * yet another attempt at downloading artifacts * make sure to use repo that ran the trigger wf * another attempt at fixing * change owner * allow publishing to testpypi also when pr * minor change * revert minor (but breaking) change * minor fix * add debug messages * another debug message * hopefully the final version * final fix * minor fix * move master and tag to individual jobs * add debug messages * dev->post * add python script for determining semantic version * minor changes * minor changes * improve error handling and add version file to artifacts * check if release * minor fix * ensure to enter venv * also when tagging * source venv in publishin workflow * ensure only master * add script for testing 'pure' semver * adapt workflows to new python script * minor change * attempt to evaluate expressions correctly * several fixes to fix tests * ensure repo is checked out in publish workflow * several small fixes * cleanup * debug * minor cleanup * mionr changes * add debug message * minor change * minor change * yet another try * minor change --- .github/workflows/build-python-client.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-python-client.yml b/.github/workflows/build-python-client.yml index e66788ca..5795823a 100644 --- a/.github/workflows/build-python-client.yml +++ b/.github/workflows/build-python-client.yml @@ -128,7 +128,7 @@ jobs: publish: name: Publish clients - if: ${{ (github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags')) || github.ref == 'refs/heads/master') }} + if: ${{ github.event_name == 'push' && ( startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/master') }} needs: [test-20-04, test-latest] uses: ./.github/workflows/publish-python-client.yml with: