Skip to content

Commit 1a018e2

Browse files
authored
Fixed invalid secret being used to publish docker image (#511)
1 parent 80ad70c commit 1a018e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/master-deployment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ jobs:
6969
- name: Login to Docker Hub
7070
uses: docker/login-action@v1
7171
with:
72-
username: ${{ secrets.DOCKER_HUB_USERNAME }}
73-
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
72+
username: ${{ secrets.DOCKER_HUB_LABS_USERNAME }}
73+
password: ${{ secrets.DOCKER_HUB_LABS_ACCESS_TOKEN }}
7474
- name: Set up Docker Build
7575
uses: docker/setup-buildx-action@v1
7676
- name: Build and push
@@ -79,7 +79,7 @@ jobs:
7979
context: .
8080
file: ./Dockerfile
8181
push: true
82-
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.3.0
82+
tags: ${{ secrets.DOCKER_HUB_LABS_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_LABS_USERNAME }}/neodash:2.3.0
8383
build-docker-legacy:
8484
needs: build-test
8585
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)