diff --git a/.github/renovate.json b/.github/renovate.json index 008e503..d560c24 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "local>cognitedata/renovate-config", + "local>cognitedata/renovate-config-public", ":automergeMinor" ] } diff --git a/.github/workflows/build-installer.yml b/.github/workflows/build-installer.yml index 7f31945..69db334 100644 --- a/.github/workflows/build-installer.yml +++ b/.github/workflows/build-installer.yml @@ -77,8 +77,11 @@ jobs: asset_content_type: application/octet-stream - name: Install publisher + env: + PYPI_ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_READONLY_TOKEN_USER_PUBLIC_REPOS }} + PYPI_ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_READONLY_TOKEN_PUBLIC_REPOS }} shell: bash - run: pip install cognite-extractor-publisher --extra-index-url "https://${{ secrets.ARTIFACTORY_READONLY_TOKEN_USER }}:${{ secrets.ARTIFACTORY_READONLY_TOKEN }}@cognite.jfrog.io/cognite/api/pypi/snakepit/simple" + run: pip install cognite-extractor-publisher --extra-index-url "https://${PYPI_ARTIFACTORY_USERNAME}:${PYPI_ARTIFACTORY_PASSWORD}@cognite.jfrog.io/cognite/api/pypi/snakepit/simple" - name: publish connector env: diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index 05aa3fd..51863ec 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -13,9 +13,9 @@ on: description: Branch value: ${{ jobs.prerequisites.outputs.branch }} secrets: - ARTIFACTORY_READONLY_TOKEN: + ARTIFACTORY_READONLY_TOKEN_USER_PUBLIC_REPOS: required: true - ARTIFACTORY_READONLY_TOKEN_USER: + ARTIFACTORY_READONLY_TOKEN_PUBLIC_REPOS: required: true jobs: