refactor(actions): simplify action path structure

- Relocates action files to a flat directory structure
- Updates references to the new paths for better organization
This commit is contained in:
2025-07-04 11:35:10 +02:00
parent 5771982931
commit 30f83b08ee
3 changed files with 1 additions and 1 deletions

11
with-post-step/action.yml Normal file
View File

@@ -0,0 +1,11 @@
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