From 9bc57a6a7f023900c7cf907c6b6450172665955c Mon Sep 17 00:00:00 2001 From: Yotam Erel <24716084+yoterel@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:17:47 +0900 Subject: [PATCH] Create tmp --- .github/workflows/tmp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/tmp diff --git a/.github/workflows/tmp b/.github/workflows/tmp new file mode 100644 index 0000000..dcb8fed --- /dev/null +++ b/.github/workflows/tmp @@ -0,0 +1,32 @@ +name: temp tester +on: + workflow_dispatch: + +jobs: + testing: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Python + uses: actions/setup-python@v3 + with: + python-version: '3.9' + + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + python -m pip install ".[build]" + - name: Bump version + run: | + bumpver update --no-fetch --patch + echo "ICATCHER_VER=$(icatcher --version | awk '{print $2}')" >> $GITHUB_ENV + + - name: Tag version + git tag + git tag ${{ env.ICATCHER_VER }} master + git tag + - name: Build package + run: python -m build