Skip to content

Commit eda7a16

Browse files
committed
FIX: Workflows
1 parent d06ad36 commit eda7a16

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: self-hosted
11+
runs-on: [self-hosted, testing]
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v4

.github/workflows/prod-deploy.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
run: |
2626
docker run -d --name zendoc.io \
2727
-p 4000:3000 \
28-
-e DB_USER=${{ secrets.DB_USER }} \
29-
-e DB_PASS=${{ secrets.DB_PASS }} \
30-
-e DB_HOST=${{ secrets.DB_HOST }} \
31-
-e DB_PORT=${{ secrets.DB_PORT }} \
32-
-e DB_DB=${{ secrets.DB_DB }} \
33-
-e ENCRYPTION_KEY=${{ secrets.ENCRYPTION_KEY }} \
34-
-e SMTP_HOST=${{ secrets.SMTP_HOST }} \
35-
-e SMTP_PORT=${{ secrets.SMTP_PORT }} \
36-
-e SMTP_PASSWORD=${{ secrets.SMTP_PASSWORD }} \
37-
-e SMTP_USER=${{ secrets.SMTP_USER }} \
38-
-e SMTP_FROM=${{ secrets.SMTP_FROM }} \
28+
-e DB_USER="${{ secrets.DB_USER }}" \
29+
-e DB_PASS="${{ secrets.DB_PASS }}" \
30+
-e DB_HOST="${{ secrets.DB_HOST }}" \
31+
-e DB_PORT="${{ secrets.DB_PORT }}" \
32+
-e DB_DB="${{ secrets.DB_DB }}" \
33+
-e ENCRYPTION_KEY="${{ secrets.ENCRYPTION_KEY }}" \
34+
-e SMTP_HOST="${{ secrets.SMTP_HOST }}" \
35+
-e SMTP_PORT="${{ secrets.SMTP_PORT }}" \
36+
-e SMTP_PASSWORD="${{ secrets.SMTP_PASSWORD }}" \
37+
-e SMTP_USER="${{ secrets.SMTP_USER }}" \
38+
-e SMTP_FROM="${{ secrets.SMTP_FROM }}" \
3939
--restart unless-stopped \
4040
zendoc.io:latest

0 commit comments

Comments
 (0)