From a77614906a06b50cf574a51d8253fe2c95a37eda Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Thu, 24 Aug 2023 11:13:03 -0700 Subject: [PATCH] split release jobs into two --- .github/workflows/release.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 93ba408..ca3e5a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,22 +12,22 @@ jobs: # step used to set up python, install poetry and to create # to virtual environment described in poetry.lock - - uses: cvxgrp/.github/actions/setup-environment@main + - uses: cvxgrp/.github/actions/build@main # change the version in pyproject.toml and build the package - - name: Change version in pyproject.toml - shell: bash - run: | - poetry version ${{ github.ref_name }} - poetry build + #- name: Change version in pyproject.toml + # shell: bash + # run: | + # poetry version ${{ github.ref_name }} + # poetry build # Archive the dist folder - - name: Archive sphinx documentation - uses: actions/upload-artifact@v3 - with: - name: dist - path: dist - retention-days: 1 + #- name: Archive sphinx documentation + # uses: actions/upload-artifact@v3 + # with: + # name: dist + # path: dist + # retention-days: 1 deploy: runs-on: ubuntu-latest