Skip to content

feat: Optimize input box input adaptive height #76

feat: Optimize input box input adaptive height

feat: Optimize input box input adaptive height #76

Workflow file for this run

name: Build and Publish Docker Image to GitHub Packages
on:
workflow_dispatch:
schedule:
- cron: '0 17 * * 0'
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner }}/coolshare:latest
platforms: linux/amd64,linux/arm64
builder: ${{ secrets.BUILDX_BUILDER }}