Update .gitea/workflows/deploy.yml
This commit is contained in:
@@ -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 "$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
|
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 *****)
|
# 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 }}
|
||||||
|
|||||||
Reference in New Issue
Block a user