Skip to content

Fix account balance display in mobile view (#4) #91

Fix account balance display in mobile view (#4)

Fix account balance display in mobile view (#4) #91

Workflow file for this run

name: 🐳 Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: 🔄 Checkout code
uses: actions/checkout@v4
- name: 🛠️ Set up QEMU
uses: docker/setup-qemu-action@v3
- name: 🛠️ Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: 🔐 Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🏗️ Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
# cache-from: type=gha
# cache-to: type=gha,mode=max
tags: ghcr.io/${{ github.repository }}:latest
platforms: |
linux/amd64
# linux/arm64/v8