Skip to content

Commit

Permalink
fixed actions docker secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaven committed Apr 28, 2024
1 parent ef3a835 commit 9a9b132
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-backend-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ secrets.DH_USERNAME }}
password: ${{ secrets.DH_PASSWORD }}
-
name: Build and push API
uses: docker/build-push-action@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-ui-container.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build-twitch-alerts
name: build-twitch-alerts-frontend

on:
push:
Expand Down Expand Up @@ -31,8 +31,8 @@ jobs:
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ secrets.DH_USERNAME }}
password: ${{ secrets.DH_PASSWORD }}
-
name: Build and push API
uses: docker/build-push-action@v4
Expand Down

0 comments on commit 9a9b132

Please sign in to comment.