Skip to content

Commit

Permalink
remove single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ellitedev committed Dec 14, 2023
1 parent 7f4e270 commit e7b8d34
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
tags: registry.ellite.dev/raibu-web:${{ steps.prep.outputs.tag }}, registry.ellite.dev/raibu-web:latest
build-args: |
RAIBU_DB_HOST=${{ secrets.RAIBU_DB_HOST }}
RAIBU_DB_USER='${{ secrets.RAIBU_DB_USER }}'
RAIBU_DB_PASSWORD='${{ secrets.RAIBU_DB_PASSWORD }}'
RAIBU_DB_USER=${{ secrets.RAIBU_DB_USER }}
RAIBU_DB_PASSWORD=${{ secrets.RAIBU_DB_PASSWORD }}
RAIBU_EMAIL_HOST=${{ secrets.RAIBU_EMAIL_HOST }}
RAIBU_EMAIL_PORT=${{ secrets.RAIBU_EMAIL_PORT }}
RAIBU_EMAIL_USER='${{ secrets.RAIBU_EMAIL_USER }}'
RAIBU_EMAIL_PASS='${{ secrets.RAIBU_EMAIL_PASS }}'
RAIBU_EMAIL_USER=${{ secrets.RAIBU_EMAIL_USER }}
RAIBU_EMAIL_PASS=${{ secrets.RAIBU_EMAIL_PASS }}
- name: Test image
run: |
docker pull registry.ellite.dev/raibu-web:${{ steps.prep.outputs.tag }}
Expand Down

0 comments on commit e7b8d34

Please sign in to comment.