From 3ac6b7413724703da614ab5b684c06143a32a58b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Francisco=20Calvo?= Date: Tue, 23 Jan 2024 18:25:36 +0100 Subject: [PATCH] chore: comment unfinished job --- .github/workflows/package.yml | 68 +++++++++++++++++------------------ 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index f5adcb1f..8223e36e 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -179,37 +179,37 @@ jobs: # secrets: inherit # This job will publish argilla-server python package into PyPI repository - publish_release: - name: Publish Release - runs-on: ubuntu-latest - if: ${{ github.event_name == 'release' }} - needs: - - build_quickstart_docker_image - permissions: - # This permission is needed for private repositories. - # contents: read - # IMPORTANT: this permission is mandatory for trusted publishing on PyPI - id-token: write - defaults: - run: - shell: bash -l {0} - steps: - - name: Checkout Code 🛎 - uses: actions/checkout@v3 - with: - submodules: "recursive" - - name: Download python package - uses: actions/download-artifact@v2 - with: - name: python-package - path: dist - - name: Setup PDM - uses: pdm-project/setup-pdm@v3 - with: - cache: true - - name: Publish Package to PyPI test environment 🥪 - run: pdm publish --no-build --repository testpypi - - name: Test Installing 🍿 - run: pip install --index-url https://test.pypi.org/simple --no-deps argilla-server==${GITHUB_REF#refs/*/v} - - name: Publish Package to PyPI 🥩 - run: pdm publish --no-build + # publish_release: + # name: Publish Release + # runs-on: ubuntu-latest + # if: ${{ github.event_name == 'release' }} + # needs: + # - build_quickstart_docker_image + # permissions: + # # This permission is needed for private repositories. + # # contents: read + # # IMPORTANT: this permission is mandatory for trusted publishing on PyPI + # id-token: write + # defaults: + # run: + # shell: bash -l {0} + # steps: + # - name: Checkout Code 🛎 + # uses: actions/checkout@v3 + # with: + # submodules: "recursive" + # - name: Download python package + # uses: actions/download-artifact@v2 + # with: + # name: python-package + # path: dist + # - name: Setup PDM + # uses: pdm-project/setup-pdm@v3 + # with: + # cache: true + # - name: Publish Package to PyPI test environment 🥪 + # run: pdm publish --no-build --repository testpypi + # - name: Test Installing 🍿 + # run: pip install --index-url https://test.pypi.org/simple --no-deps argilla-server==${GITHUB_REF#refs/*/v} + # - name: Publish Package to PyPI 🥩 + # run: pdm publish --no-build