test actions
This commit is contained in:
parent
0619c627aa
commit
c27246f7f6
@ -110,7 +110,7 @@ runs:
|
|||||||
|
|
||||||
- name: add ci registry to targets
|
- name: add ci registry to targets
|
||||||
shell: bash
|
shell: bash
|
||||||
if: inputs.add-ci-registry-target == "true"
|
if: inputs.add-ci-registry-target == 'true'
|
||||||
run: |
|
run: |
|
||||||
# TODO candidate for extraction to common information gathering role
|
# TODO candidate for extraction to common information gathering role
|
||||||
# extract base hostname from server url
|
# extract base hostname from server url
|
||||||
@ -150,14 +150,14 @@ runs:
|
|||||||
|
|
||||||
- name: add ci registry auth
|
- name: add ci registry auth
|
||||||
shell: bash
|
shell: bash
|
||||||
if: inputs.add-ci-registry-auth == "true"
|
if: inputs.add-ci-registry-auth == 'true'
|
||||||
run: |
|
run: |
|
||||||
REGISTRY_AUTH_JSON="$REGISTRY_AUTH_JSON {\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(echo -n token:$CI_REGISTRY_PASSWORD | base64)\"}}}"
|
REGISTRY_AUTH_JSON="$REGISTRY_AUTH_JSON {\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(echo -n token:$CI_REGISTRY_PASSWORD | base64)\"}}}"
|
||||||
echo "REGISTRY_AUTH_JSON=$REGISTRY_AUTH_JSON" >> $GITHUB_ENV
|
echo "REGISTRY_AUTH_JSON=$REGISTRY_AUTH_JSON" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: merge registry auth json
|
- name: merge registry auth json
|
||||||
shell: bash
|
shell: bash
|
||||||
if: inputs.merge-registry-auth-json == "true"
|
if: inputs.merge-registry-auth-json == 'true'
|
||||||
run: |
|
run: |
|
||||||
if [[ ! -z "$REGISTRY_AUTH_JSON" ]]; then
|
if [[ ! -z "$REGISTRY_AUTH_JSON" ]]; then
|
||||||
REGISTRY_AUTH_JSON=$(echo "$REGISTRY_AUTH_JSON" | jq --slurp 'reduce .[] as $item ({}; . * $item)')
|
REGISTRY_AUTH_JSON=$(echo "$REGISTRY_AUTH_JSON" | jq --slurp 'reduce .[] as $item ({}; . * $item)')
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user