mirror of https://gitea.com/gitea/act
15 lines
420 B
YAML
15 lines
420 B
YAML
name: uses-docker-url
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./uses-nested-composite/composite_action2
|
|
with:
|
|
test_input_optional: Test
|
|
- run: |
|
|
echo "steps.composite.outputs.secret_output=$COMPOSITE_ACTION_ENV_OUTPUT"
|
|
[[ "${{env.COMPOSITE_ACTION_ENV_OUTPUT == 'my test value' }}" = "true" ]] || exit 1
|
|
shell: bash |