Skip to content

Commit

Permalink
ci: fix login docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Murzbul committed Dec 8, 2023
1 parent 71a1f2d commit b695f28
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ APP_PORT=8089
APP_SET_APP_PROXY=false
APP_SET_COOKIE_SECURE=false
APP_SET_COOKIE_SAME_SITE=Lax
APP_CORS=*

# Database configuration
# Mongoose
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Docker Login
run: echo $DOCKERHUB_TOKEN | docker login -u $DOCKERHUB_USERNAME --password-stdin
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build
run: |-
Expand Down

0 comments on commit b695f28

Please sign in to comment.