12 lines
220 B
YAML
12 lines
220 B
YAML
name: second
|
|
on: push
|
|
jobs:
|
|
print-variables_asd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run:
|
|
if secrets.SECRET1; then
|
|
echo 'secret is here'
|
|
exit 0
|
|
- run: echo ${{vars.VARIABLE1}}
|