Skip to content

material symbol fonts #98

material symbol fonts

material symbol fonts #98

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ master ]
tags:
- 'v*'
pull_request:
branches: [ master ]
env:
VERSION: 1.1.0
jobs:
docker-build-and-push:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
milung/ufe-controller
tags: |
type=schedule
type=ref,event=branch
type=ref,event=branch,suffix={{date '.YYYYMMDD.HHmm'}}
type=ref,event=tag
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- uses: actions/checkout@v2
- uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64/v8
file: ./build/docker/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}