Update .gitea/workflows/deploy.yml
Deployment / test (push) Successful in 2m1s
Deployment / lol (push) Failing after 6s
Deployment / deploy (push) Successful in 4s

This commit is contained in:
2023-07-15 03:03:16 +02:00
parent 65f689717b
commit 4305f4bb81
+8
View File
@@ -56,3 +56,11 @@ jobs:
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 *****)
lol:
runs-on: ubuntu-latest
steps:
- name: Try output only in same job
id: try
run: echo 'lil=lul' >> $GITHUB_OUTPUT
- name: Try access
run: echso ${{ steps.try.lil }}