Skip to content

Commit

Permalink
fixed: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chem1sto committed Jun 18, 2024
1 parent b51bbf8 commit b3590ba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/yamdb_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ jobs:
docker compose down
docker compose pull
touch .env
echo DB_ENGINE=${{ secrets.DB_ENGINE }} >> .env
echo DB_NAME=${{ secrets.DB_NAME }} >> .env
echo POSTGRES_USER=${{ secrets.POSTGRES_USER }} >> .env
echo POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }} >> .env
echo DB_HOST=${{ secrets.DB_HOST }} >> .env
echo DB_PORT=${{ secrets.DB_PORT }} >> .env
echo DB_ENGINE=${{ secrets.DB_ENGINE }} > .env
echo DB_NAME=${{ secrets.DB_NAME }} > .env
echo POSTGRES_USER=${{ secrets.POSTGRES_USER }} > .env
echo POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }} > .env
echo DB_HOST=${{ secrets.DB_HOST }} > .env
echo DB_PORT=${{ secrets.DB_PORT }} > .env
docker compose up -d
send_message:
Expand Down

0 comments on commit b3590ba

Please sign in to comment.