From 378e8b6daa68bf03a0de62c0eb29c1b80517dfca Mon Sep 17 00:00:00 2001 From: Jonas Bogenberger Date: Thu, 2 Nov 2023 09:46:19 +0100 Subject: [PATCH] fix github action again --- .github/workflows/actions.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 8a6b09f..c0b334b 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -18,15 +18,14 @@ jobs: with: python-version: '3.x' architecture: 'x64' - - name: Install setuptools - run: python -m pip install setuptools + - name: Install packages + run: pip install . - name: Run test run: python setup.py test # we do not use the available GitHub action as that does not support building # entrypoints that are not located in the root folder of the repo at the moment - name: Create binary run: | - pip install . python -m nuitka --assume-yes-for-downloads --standalone --onefile --linux-onefile-icon=/usr/share/pixmaps/python3.xpm teamscale_precommit_client/precommit_client.py mv precommit_client.bin teamscale-cli - name: 'Upload Artifact'