Skip to content

ci

ci #100

Workflow file for this run

name: ci
on:
push:
branches:
- "main"
schedule:
- cron: "2 3 * * *"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKER_USER }}
password: ${{ secrets.DOCKER_PAT }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: cloud
endpoint: "lightpanda/lightpanda-browser"
install: true
platforms: linux/amd64,linux/arm64
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
no-cache: true
tags: "${{ vars.DOCKER_USER }}/browser:latest,${{ vars.DOCKER_USER }}/browser:nightly"
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry' }}