Skip to content

Commit

Permalink
fix(ci): update tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
mostaphaRoudsari committed Oct 22, 2024
1 parent 2cd540b commit 96641ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
- name: Publish package to TestPyPI
run: bash deploy.sh
env:
PYPI_USER: ${{ secrets.PYPI_USER }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
PYPI_USER: ${{ secrets.POLLINATION_PYPI_PASSWORD }}
PYPI_PASSWORD: ${{ secrets.POLLINATION_PYPI_PASSWORD }}
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
node-version: 22.2.0
- run: npx semantic-release@^23.1.1
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion queenbee_pollination/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Config(BaseSettings):
endpoint: str = Field(
'https://api.pollination.solutions',
description='The API endpoint to use when making API calls',
env='QB_POLLINATION_ENDPOINT',
env='POLLINATION_ENDPOINT',
)

token: str = Field(
Expand Down

0 comments on commit 96641ef

Please sign in to comment.