ci: small update

This commit is contained in:
dec0dOS 2021-03-22 22:45:31 +03:00
parent 38814dfaec
commit c64221b5ae

View file

@ -24,19 +24,6 @@ jobs:
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
fi
echo ::set-output name=tags::${TAGS}
- name: Prepare zerotier-controller
id: prep_zerotier-controller
run: |
DOCKER_IMAGE=${{ secrets.DOCKER_HUB_USERNAME }}/zerotier-controller
VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/v}
fi
TAGS="${DOCKER_IMAGE}:${VERSION}"
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
fi
echo ::set-output name=tags::${TAGS}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
@ -62,7 +49,7 @@ jobs:
tags: ${{ steps.prep_zero-ui.outputs.tags }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Build and push
- name: Build and push zerotier-controller
id: docker_build_zerotier-controller
uses: docker/build-push-action@v2
with:
@ -70,6 +57,6 @@ jobs:
file: ./docker/zerotier/Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.prep_zerotier-controller.outputs.tags }}
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/zerotier-controller:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache