diff --git a/.github/workflows/build-base-python.yml b/.github/workflows/build-base-python.yml index 236a6d1..b81eb5f 100644 --- a/.github/workflows/build-base-python.yml +++ b/.github/workflows/build-base-python.yml @@ -6,7 +6,7 @@ on: # yamllint disable-line rule:truthy inputs: deploy: type: choice - description: 'Whether to upload base python build to artifactory' + description: 'Whether to upload base python build to ProGet' options: - 'no-upload' - 'upload' @@ -67,7 +67,7 @@ jobs: uses: actions/setup-python@v6 if: ${{ needs.setup.outputs.python == 'python' }} with: - python-version: '3.9' + python-version: '3.11' - name: Set up Python environment run: | @@ -87,22 +87,6 @@ jobs: echo "archive_path=$archive_path" >> $GITHUB_ENV echo "shortversion=$shortversion" >> $GITHUB_ENV - - name: Set up JFrog CLI - if: ${{ inputs.deploy == 'upload' }} - uses: jfrog/setup-jfrog-cli@v4 - env: - JF_ENV_1: ${{ secrets.ARTIFACTORY_GH_CCDC_3RDPARTY_PYTHON_INTERPRETERS_READ_WRITE_EXPORT }} - - - name: Upload base python to Artifactory - if: ${{ inputs.deploy == 'upload' }} - shell: bash - run: | - # Upload the base python to Artifactory - jf c use gh-ccdc-3rdparty-python-interpreters-read-write - jfrog rt upload --flat \ - "${{ env.archive_path }}/${{ env.archive_filename }}" \ - "ccdc-3rdparty-python-interpreters/base_python/${{ env.shortversion }}/" - - name: upload base python to ProGet if: ${{ inputs.deploy == 'upload' }} shell: bash