Codabix Docker v1.5.1 #127
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: Docker Image CI | |
on: | |
release: | |
types: | |
- published | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: | |
- master | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- | |
name: Get Docker Image Tag version from Git tag | |
id: docker-tags | |
run: | | |
TAG=$(echo "$GITHUB_REF" | cut -d '/' -f3 | sed -e 's/^v//g') | |
if [ "${TAG}" = "master" ]; | |
then | |
TAG="latest"; | |
fi | |
echo ::set-output name=tags::$(echo "ghcr.io/traeger-gmbh/codabix:${TAG}%0Atraeger/codabix:${TAG}") | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@master | |
with: | |
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7 | |
- | |
name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- | |
name: Log in to Docker Hub | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- | |
name: Log in to GitHub | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.PACKAGES_GITHUB_USER }} | |
password: ${{ secrets.PACKAGES_GITHUB_TOKEN }} | |
- | |
name: Build | |
uses: docker/build-push-action@v2 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: . | |
file: ./Dockerfile | |
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7 | |
push: true | |
tags: ${{ steps.docker-tags.outputs.tags }} |