Skip to content

font-weight improvement, refactored the project #75

font-weight improvement, refactored the project

font-weight improvement, refactored the project #75

Workflow file for this run

name: Build portfolio
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Container registry login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build image
uses: docker/build-push-action@v5
with:
push: true
context: .
file: Dockerfile
tags: ghcr.io/mp281x/portfolio:latest
cache-from: type=gha
cache-to: type=gha,mode=max