Skip to content

Commit

Permalink
fix(cicd): fix usernames used in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
sfopsbot committed Dec 15, 2023
1 parent a951573 commit 74c5157
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
repo: 'dxatscale'
image: 'sfpowerscripts-rc'
secrets:
username: ${{ secrets.DOCKER_USERNAME }}
token: ${{ secrets.DOCKER_SECRET }}
username: ${{ secrets.DOCKER_USERNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
needs: [ build ]

build-docker-lite:
Expand All @@ -64,8 +64,8 @@ jobs:
dockerFileName: 'sfp-lite'
image: 'sfp-lite-rc'
secrets:
username: ${{ secrets.DOCKER_USERNAME }}
token: ${{ secrets.DOCKER_SECRET }}
username: ${{ secrets.DOCKER_USERNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
needs: [ build ]

#Promotion Stages
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
image: 'sfpowerscripts-rc'
secrets:
username: ${{ secrets.DOCKER_USERNAME }}
token: ${{ secrets.DOCKER_SECRET }}
token: ${{ secrets.GITHUB_TOKEN }}
needs: [ build-docker ]

alpha-docker-lite:
Expand Down

0 comments on commit 74c5157

Please sign in to comment.