Correctly calculate scores for 170 #118
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: | |
push: | |
branches: [ main, develop ] | |
tags: | |
- 'v*.*.*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Tag Version | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: DockerHub Login | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Docker Setup QEMU | |
uses: docker/[email protected] | |
with: | |
platforms: arm,arm64,amd64 | |
- name: Docker Setup Buildx | |
uses: docker/[email protected] | |
- name: Build & Push Docker image (Latest) | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/') | |
run: docker buildx build . --file Dockerfile -t kcapp/api:latest --platform=linux/arm,linux/arm64,linux/amd64 --push | |
- name: Build & Push Docker image (Release version) | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
run: docker buildx build . --file Dockerfile -t kcapp/api:${{ env.RELEASE_VERSION }} --platform=linux/arm,linux/arm64,linux/amd64 --push |