Skip to content

Improved quoting in Bash var declarations and assignments #33

Improved quoting in Bash var declarations and assignments

Improved quoting in Bash var declarations and assignments #33

Workflow file for this run

---
name: main
on:
push: # All branches and tags
schedule:
# Runs automatically on the 27th of every month at 04:30 UTC
- cron: "30 04 27 * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
job:
uses: dmotte/misc/.github/workflows/cicd-with-script.yml@main
with:
script: >
MISC_SCRIPTS_DIR=$GITHUB_ACTION_PATH/../../scripts
bash -ec 'for i in jobs/*.sh; do
echo "::group::$i"; bash "$i"; echo "::endgroup::"; done'