Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker login #4

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/build-deploy-elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ on:
DOCKER:
description: 'needed for registry login'
required: true
DOCKER_USERNAME:
description: 'needed for registry login'
required: true
KUBE_CONFIG:
description: 'needed for kube setup'
required: true
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/build-deploy-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ on:
DOCKER:
description: 'needed for registry login'
required: true
DOCKER_USERNAME:
description: 'needed for registry login'
required: true
KUBE_CONFIG:
description: 'needed for kube setup'
required: true
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/build-deploy-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ on:
GH_PAT:
description: 'needed for github login'
required: true
DOCKER_USERNAME:
description: 'needed for registry login'
required: true
DOCKER:
description: 'needed for registry login'
required: true
Expand Down Expand Up @@ -128,12 +125,11 @@ jobs:
- name: Debug secrets
run: |
echo ${{ secrets.DOCKER }}
echo ${{ secrets.DOCKER_USERNAME }}

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
username: quaibuild
password: ${{ secrets.DOCKER }}

- name: Build Docker
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/build-deploy-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ on:
GH_PAT:
description: 'needed for github login'
required: true
DOCKER_USERNAME:
description: 'needed for registry login'
required: true
DOCKER:
description: 'needed for registry login'
required: true
Expand Down Expand Up @@ -127,12 +124,11 @@ jobs:
- name: Debug secrets
run: |
echo ${{ secrets.DOCKER }}
echo ${{ secrets.DOCKER_USERNAME }}

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
username: quaibuild
password: ${{ secrets.DOCKER }}

- name: Build Docker
Expand Down
197 changes: 0 additions & 197 deletions .github/workflows/build-deploy.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .github/workflows/cut-release-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ on:
GH_PAT:
description: 'needed for github login'
required: true
DOCKER_USERNAME:
description: 'needed for registry login'
required: true
DOCKER:
description: 'needed for registry login'
required: true
Expand Down Expand Up @@ -250,7 +247,6 @@ jobs:
if: needs.detect-language.outputs.language == 'javascript'
secrets:
DOCKER: ${{ secrets.DOCKER }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
GH_PAT: ${{ secrets.GH_PAT }}
KUBE_CONFIG: ${{ secrets.KUBECONFIG_LOCAL }}
DOCKER_BUILD_ARGS: ${{ secrets.DOCKER_BUILD_ARGS }}
Expand All @@ -272,7 +268,6 @@ jobs:
needs: [cutReleaseCandidateTS]
secrets:
DOCKER: ${{ secrets.DOCKER }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
GH_PAT: ${{ secrets.GH_PAT }}
KUBE_CONFIG: ${{ secrets.KUBECONFIG_LOCAL }}
DOCKER_BUILD_ARGS: ${{ secrets.DOCKER_BUILD_ARGS }}
Expand Down
Loading
Loading