Files
test/.gitea/workflows/second.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 7: did not find expected key
2026-08-05 15:16:09 +02:00

18 lines
359 B
YAML

name: second
run-name: variable test
on: push
jobs:
print-variables_asd:
runs-on: ubuntu-latest
steps:
env:
SECRET5: ${{ secrets.SECRET1 }}
- run: |
if [ -n "$SECRET5" ]; then
echo "secret is here"
else
echo "secret missing"
exit 1
fi
# - run: echo ${{vars.VARIABLE1}}