Skip to content

Commit

Permalink
Rename secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
btschwertfeger committed Jan 13, 2025
1 parent e1733a1 commit d842af7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_docker_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
## Run the unit and integration tests
##
Test:
needs: [Build]
needs: [Pre-Commit]
uses: ./.github/workflows/_test.yaml
strategy:
fail-fast: true
Expand All @@ -91,8 +91,7 @@ jobs:
success()
&& github.actor == 'btschwertfeger'
&& github.event_name != 'schedule'
needs:
- Test
needs: [Pre-Commit]
uses: ./.github/workflows/_codecov.yaml
with:
os: "ubuntu-latest"
Expand All @@ -115,6 +114,7 @@ jobs:
- Build-Docker
- CodeCov
- CodeQL
- Test
uses: ./.github/workflows/_pypi_test_publish.yaml
secrets:
API_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }}
Expand All @@ -133,6 +133,7 @@ jobs:
- Build-Docker
- CodeCov
- CodeQL
- Test
uses: ./.github/workflows/_pypi_publish.yaml
secrets:
API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
Expand All @@ -154,6 +155,7 @@ jobs:
- Build-Docker
- CodeCov
- CodeQL
- Test
uses: ./.github/workflows/_docker_publish.yaml
secrets:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand Down

0 comments on commit d842af7

Please sign in to comment.