- Relocates action files to a flat directory structure - Updates references to the new paths for better organization
12 lines
343 B
YAML
12 lines
343 B
YAML
name: "with-post-step"
|
|
description: "Runs a main command and, afterwards, a post command."
|
|
inputs:
|
|
main: { description: "Command for the main step", required: true }
|
|
post: { description: "Command for the post step", required: true }
|
|
key: { description: "State key", default: POST }
|
|
|
|
runs:
|
|
using: node20
|
|
main: main.js
|
|
post: main.js
|