Skip to content

Remove dark mode for visitors #6

Remove dark mode for visitors

Remove dark mode for visitors #6

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches: [master]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
push: true
tags: |
sonofliberty/gotcha-url:latest
sonofliberty/gotcha-url:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max