Skip to content

tabby-web

tabby-web #12

Workflow file for this run

name: tabby-web
on:
workflow_dispatch:
schedule:
- cron: "10 9 * * 0"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout tabby-web Repository
uses: actions/checkout@v4
with:
repository: Eugeny/tabby-web
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push (MAIN)
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/tabby-web:latest