We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7a26d commit 62255bdCopy full SHA for 62255bd
.github/workflows/deploy.yml
@@ -58,9 +58,11 @@ jobs:
58
fi
59
60
echo "[deploy] start new app"
61
- DB_PASSWORD=${{ secrets.DB_PASSWORD }}\
62
- DISCORD_TOKEN=${{ secrets.DISCORD_TOKEN }}\
63
- nohup java -jar build/libs/workingdead-0.0.1-SNAPSHOT.jar > app.log 2>&1 &
+
+ export DB_PASSWORD='${{ secrets.DB_PASSWORD }}'
+ export DISCORD_TOKEN='${{ secrets.DISCORD_TOKEN }}'
64
65
+ nohup java -jar build/libs/workingdead-0.0.1-SNAPSHOT.jar > app.log 2>&1 &
66
67
echo $! > app.pid
68
0 commit comments