Skip to content

Commit

Permalink
Fix renovate.json and artifactory secrets
Browse files Browse the repository at this point in the history
Fix renovate.json and artifactory secrets
  • Loading branch information
polomani authored Oct 4, 2024
2 parents 94363f1 + 4c0fb2b commit 1e36cd0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>cognitedata/renovate-config",
"local>cognitedata/renovate-config-public",
":automergeMinor"
]
}
5 changes: 4 additions & 1 deletion .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1e36cd0

Please sign in to comment.