Update action.yaml
This commit is contained in:
parent
b9c6c689c2
commit
4e5b6df9d8
@ -13,17 +13,20 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
VERSION="${{ inputs.version }}"
|
VERSION="${{ inputs.version }}"
|
||||||
IS_PRESENT=$(docker manifest inspect uazo/build-deps:$VERSION > /dev/null ; echo $?)
|
IS_PRESENT=$(docker inspect --type=image uazo/build-deps:$VERSION > /dev/null ; echo $?)
|
||||||
if [ $IS_PRESENT -ne "0" ]; then
|
if [ $IS_PRESENT -ne "0" ]; then
|
||||||
echo "Image not found"
|
IS_PRESENT=$(docker manifest inspect uazo/build-deps:$VERSION > /dev/null ; echo $?)
|
||||||
|
if [ $IS_PRESENT -ne "0" ]; then
|
||||||
|
echo "Image not found"
|
||||||
|
|
||||||
mkdir build-repo
|
mkdir build-repo
|
||||||
pushd build-repo/
|
pushd build-repo/
|
||||||
|
|
||||||
git clone https://github.com/uazo/bromite-buildtools
|
git clone https://github.com/uazo/bromite-buildtools
|
||||||
cd bromite-buildtools/images/build-deps/
|
cd bromite-buildtools/images/build-deps/
|
||||||
docker build -t uazo/build-deps:$VERSION --progress plain --build-arg .
|
docker build -t uazo/build-deps:$VERSION --progress plain --build-arg .
|
||||||
|
|
||||||
popd
|
popd
|
||||||
rm -rf build-repo
|
rm -rf build-repo
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user