update @native
Some checks failed
Setup Docker Action / setup_docker (3.12.7) (push) Has been skipped
Setup Native Action / setup_native (3.12.7) (push) Failing after 1m25s

This commit is contained in:
hoangvv 2025-01-15 10:43:19 +07:00
parent 10667672e9
commit 292351d067
2 changed files with 3 additions and 2 deletions

View File

@ -33,10 +33,9 @@ jobs:
PG_PASSWORD: ${{ secrets.PG_PASSWORD }}
DB_SERVER: ${{ vars.DB_SERVER }}
DB_PORT: ${{ vars.DB_PORT }}
- name: Activate virtual environment and install dependencies
run: make install
- name: Generate Config
run: make gen_config

View File

@ -195,6 +195,8 @@ Generate_Config_Native(){
# Load environment variables from .env file
if [ -f .env ]; then
export $(grep -v '^#' .env | xargs)
Show 2 "Environment variables loaded:"
printenv | sort
else
Show 1 ".env file not found!"
exit 1