Fixed incorrect shell causing a broken substitution
Container image / image (push) Failing after 9m41s

This commit is contained in:
2026-05-15 01:19:21 +00:00
parent ebbbd8c218
commit acd55d145c
+6
View File
@@ -30,6 +30,12 @@ jobs:
# produces a duplicate-mount error from the daemon.
container:
image: catthehacker/ubuntu:act-latest
# aether-runner defaults `run:` blocks to POSIX `sh`, which
# chokes on bash-isms like ${var,,} (lowercase) and ${var:0:7}
# (substring). Pin bash for the whole job.
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v4