mirror of https://github.com/dapr/quickstarts.git
Merge branch 'master' into patch-1
This commit is contained in:
commit
96e2d121f2
|
|
@ -24,6 +24,11 @@ jobs:
|
||||||
run: python ./.github/scripts/get_release_version.py
|
run: python ./.github/scripts/get_release_version.py
|
||||||
- name: Build docker image
|
- name: Build docker image
|
||||||
run: |
|
run: |
|
||||||
|
if [ -z "${{ env.SAMPLE_REGISTRY }}" ]; then
|
||||||
|
export SAMPLE_REGISTRY=docker.io/dapriosamples
|
||||||
|
echo "##[set-env name=SAMPLE_REGISTRY;]$SAMPLE_REGISTRY"
|
||||||
|
fi
|
||||||
|
|
||||||
SAMPLE_LIST=(2.hello-kubernetes 3.distributed-calculator 4.pub-sub 5.bindings)
|
SAMPLE_LIST=(2.hello-kubernetes 3.distributed-calculator 4.pub-sub 5.bindings)
|
||||||
|
|
||||||
for sample in "${SAMPLE_LIST[@]}"; do
|
for sample in "${SAMPLE_LIST[@]}"; do
|
||||||
|
|
@ -46,4 +51,4 @@ jobs:
|
||||||
pushd ${sample}
|
pushd ${sample}
|
||||||
make push
|
make push
|
||||||
popd
|
popd
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue