Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build and push docker images | |
on: | |
release: | |
types: [published] | |
env: | |
REGISTRY: ghcr.io | |
DOCKERHUB_REPOSITORY: ghcr.io/${{ github.repository }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
docker-build-push: | |
name: Build and push docker images | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [alpine, debian, ubuntu] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract version from tag | |
uses: damienaicheh/extract-version-from-tag-action@v1.1.0 | |
- name: Set and Retrieve Github ENV variables | |
shell: bash | |
run: | | |
# define variables | |
fullVersion="${{ env.MAJOR }}" | |
if [ "${{ env.MINOR }}" != "" ]; then | |
fullVersion+=".${{ env.MINOR }}" | |
elif [ "${{ env.PATCH }}" != "" ]; then | |
fullVersion+=".${{ env.PATCH }}" | |
fi | |
# set them as GitHub ENV variables | |
echo "FullVersion=$fullVersion" >> $GITHUB_ENV | |
- name: output version number | |
run: | | |
echo "Full version output:: ${{ env.FullVersion }}" | |
- name: Set environment DOCKERHUB_IMAGE_TAGS and VERSION | |
run: | | |
_VERSION="${{ env.FullVersion }}" | |
_MAJOR_VERSION=${_VERSION%.*} | |
_DOCKERHUB_IMAGE_TAGS="$DOCKERHUB_REPOSITORY:$_VERSION-${{ matrix.os }}" | |
_DOCKERHUB_IMAGE_TAGS+=",$DOCKERHUB_REPOSITORY:$_MAJOR_VERSION-${{ matrix.os }}" | |
_DOCKERHUB_IMAGE_TAGS+=",$DOCKERHUB_REPOSITORY:${{ matrix.os }}" | |
if [ "${{ matrix.os }}" == "alpine" ]; then | |
_DOCKERHUB_IMAGE_TAGS+=",$DOCKERHUB_REPOSITORY:$_VERSION" | |
_DOCKERHUB_IMAGE_TAGS+=",$DOCKERHUB_REPOSITORY:$_MAJOR_VERSION" | |
_DOCKERHUB_IMAGE_TAGS+=",$DOCKERHUB_REPOSITORY:latest" | |
fi | |
echo "DOCKERHUB_IMAGE_TAGS=$_DOCKERHUB_IMAGE_TAGS" >> $GITHUB_ENV | |
- name: Set environment DOCKERHUB_IMAGE_PLATFORMS | |
run: | | |
_DOCKERHUB_IMAGE_PLATFORMS="linux/amd64" | |
if [ "${{ matrix.os }}" == "debian" ]; then | |
_DOCKERHUB_IMAGE_PLATFORMS+=",linux/arm64" | |
elif [ "${{ matrix.os }}" == "ubuntu" ]; then | |
_DOCKERHUB_IMAGE_PLATFORMS+=",linux/arm64" | |
fi | |
echo "DOCKERHUB_IMAGE_PLATFORMS=$_DOCKERHUB_IMAGE_PLATFORMS" >> $GITHUB_ENV | |
- name: Build and push | |
if: env.DOCKERHUB_IMAGE_TAGS != '' | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: docker/Dockerfile.${{ matrix.os }} | |
tags: ${{ env.DOCKERHUB_IMAGE_TAGS }} | |
platforms: ${{ env.DOCKERHUB_IMAGE_PLATFORMS }} | |
push: true | |
build-args: | | |
TRACCAR_VERSION=${{ env.MAJOR }} |