Skip to content

Commit

Permalink
Update build-deploy-all.yml
Browse files Browse the repository at this point in the history
Updated to use the GITOP_PAT secret for the GITHUB_TOKEN value.

Moved PYPI_USERNAME and PYPI_PASSWORD to Repository Secrets.
  • Loading branch information
brett-hodges authored Nov 19, 2024
1 parent 12ce2f5 commit d65a8d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-deploy-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GITOPS_PAT }}

steps:
# Checkout the repository
Expand All @@ -39,7 +39,7 @@ jobs:
run: |
bump2version patch # You can specify 'patch', 'minor', or 'major' based on your versioning needs
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GITOPS_PAT }}

# Build the package distributables and publish to PyPI
- name: Build package
Expand Down

0 comments on commit d65a8d3

Please sign in to comment.