mirror of
https://gitea.com/gitea/act
synced 2025-02-07 08:39:42 +00:00
3364f95569
This fixes an issue in the chain of post steps introduced while updating the step-logger for composite actions. It includes a test case so we make sure this does not happen again.
11 lines
294 B
YAML
11 lines
294 B
YAML
name: "action composite"
|
|
description: "action composite"
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
# second post action should fail if executed (we do check on the exit code)
|
|
- uses: ./ensure-post-steps/action-post/
|
|
with:
|
|
fail: "true"
|
|
- uses: ./ensure-post-steps/action-post/
|