Merge pull request #132 from kouprlabs/feat/enable-auto-fixable-linters #20
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
# Copyright 2023 Anass Bouassaba, Piotr Łoboda. | |
# | |
# Use of this software is governed by the Business Source License | |
# included in the file licenses/BSL.txt. | |
# | |
# As of the Change Date specified in that file, in accordance with | |
# the Business Source License, use of this software will be governed | |
# by the GNU Affero General Public License v3.0 only, included in the file | |
# licenses/AGPL.txt. | |
name: Build and Push voltaserve/mosaic | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "mosaic/**" | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "mosaic/**" | |
jobs: | |
build_and_push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set Up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64, amd64 | |
- name: Extract tag that triggered this action | |
if: ${{ github.ref_type == 'tag' }} | |
run: | | |
TAG=${{ github.ref_name }} | |
echo "TRIMMED_TAG=${TAG#v}" >> $GITHUB_ENV | |
- name: Set Up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and Push Docker Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./mosaic | |
push: true | |
tags: voltaserve/mosaic:${{ env.TRIMMED_TAG || 'latest' }} | |
platforms: linux/amd64,linux/arm64 |