Update .gitea/workflows/deploy.yml
Deployment / test (push) Successful in 2m1s
Deployment / deploy (push) Successful in 3s

This commit is contained in:
2023-07-15 01:10:59 +02:00
parent 607ff60dd6
commit 65f689717b
+3 -2
View File
@@ -8,8 +8,8 @@ on:
env:
# Global Env Variables readable in all jobs of this workflow
MONGODB_CLUSTER_ADDRESS: coursow-de.bwnpjvo.mongodb.net
MONGODB_USERNAME: ${{secrets.MONGODB_USER}}
MONGODB_PASSWORD: ${{secrets.MONGODB_PASSWORD}}
MONGODB_USERNAME: ${{secrets.MONGODB_USER}} # Added / configured in Repo Action Settings UI
MONGODB_PASSWORD: ${{secrets.MONGODB_PASSWORD}} # Added / configured in Repo Action Settings UI
MONGODB_DB_NAME: actions-environment
WEB_PORT: 8080
@@ -55,3 +55,4 @@ jobs:
run: |
echo "$ONLY_HERE" # Will not work... As it is not defined in global env or this 'deploy' job env
echo "$MONGODB_USERNAME" # Works... Will return a value as defined in global env
# But will NOT print the real username value as it is a "secret" (will print *****)