Skip to content

use nerd font

use nerd font #732

Workflow file for this run

name: Build docker image
on: [push]
jobs:
build:
name: Build docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push docker images
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: phoomparin/dotfiles:latest
cache-from: type=registry,ref=phoomparin/dotfiles:latest
cache-to: type=inline