I did see on
That the image was built as docker and not phpmyadmin because of:
|
image="${GITHUB_REPOSITORY##*/}" # "python", "golang", etc |
So I did a small tweak to change this (I was thinking that that would make my config.sh work but it is not read)
generate-jobs:
name: Generate Jobs
runs-on: ubuntu-latest
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- uses: actions/checkout@v3
- id: generate-jobs
name: Generate Jobs
# See: https://github.com/docker-library/bashbrew/blob/b4880ac5f1bf6b9340536f1c5325afa9733bd619/scripts/github-actions/generate.sh#L4
run: |
git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
export GITHUB_REPOSITORY="phpmyadmin"
strategy="$(~/bashbrew/scripts/github-actions/generate.sh)"
jq . <<<"$strategy" # sanity check / debugging aid
echo "::set-output name=strategy::$strategy"
I did see on
That the image was built as
dockerand notphpmyadminbecause of:bashbrew/scripts/github-actions/generate.sh
Line 4 in b4880ac
So I did a small tweak to change this (I was thinking that that would make my
config.shwork but it is not read)