refactor(actions): nest binary and code runners under run-vociferate/

This commit is contained in:
Micheal Wilkinson
2026-03-21 14:54:25 +00:00
parent ee274602a8
commit 3f555fb894
3 changed files with 7 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ runs:
- name: Run binary
id: run-binary
if: steps.resolve-runtime.outputs.use_binary == 'true'
uses: ../run-vociferate.binary
uses: ./binary
with:
root: ${{ inputs.root }}
version-file: ${{ inputs.version-file }}
@@ -81,7 +81,7 @@ runs:
- name: Run source
id: run-code
if: steps.resolve-runtime.outputs.use_binary != 'true'
uses: ../run-vociferate.code
uses: ./code
with:
root: ${{ inputs.root }}
version-file: ${{ inputs.version-file }}