From 55d81ce5aec04c48bbe55574b35f3a93310ceea5 Mon Sep 17 00:00:00 2001 From: SomesH S Date: Sun, 13 Nov 2022 08:55:12 +0530 Subject: [PATCH 1/3] try and fix github actions workflow - pypi-release.yml --- .github/workflows/pypi-release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 4692d5d..e1c8d60 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -2,6 +2,8 @@ name: pypi-release on: push: + branches: + - "refactor-**" tags: - "v*.*" @@ -13,11 +15,11 @@ jobs: id: setup_python uses: actions/setup-python@v4.3.0 with: - python-version: 3.9 + python-version: 3.10 - name: Checkout Repo id: checkout_repo - uses: actions/checkout@v2.5.0 + uses: actions/checkout@v3 with: submodules: recursive @@ -26,6 +28,7 @@ jobs: env: PKG_VER: ${{ github.ref }} run: | + python3 grt.py python3 -m pip install build --user python3 -m build ls -shl dist/ From c8fc6fa4451af3a2140b6cd234df69a3dc87dcf8 Mon Sep 17 00:00:00 2001 From: SomesH S Date: Sun, 13 Nov 2022 08:57:42 +0530 Subject: [PATCH 2/3] re - 55d81ce5 --- .github/workflows/pypi-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index e1c8d60..980c27b 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -15,7 +15,7 @@ jobs: id: setup_python uses: actions/setup-python@v4.3.0 with: - python-version: 3.10 + python-version: 3.9 - name: Checkout Repo id: checkout_repo From 344915fe06dfc93539aec390ee7a5af43bbd0f49 Mon Sep 17 00:00:00 2001 From: SomesH S Date: Sun, 13 Nov 2022 09:04:09 +0530 Subject: [PATCH 3/3] re - c8fc6fa4 --- .github/workflows/pypi-release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 980c27b..0997a3c 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -2,8 +2,6 @@ name: pypi-release on: push: - branches: - - "refactor-**" tags: - "v*.*"