move google-chrome-stable related packages to arm64 section #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Debian Container Image | |
on: | |
pull_request: | |
paths: | |
- "debian/**" | |
push: | |
paths: | |
- "debian/**" | |
branches: | |
- master | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: debian | |
file: debian/Dockerfile | |
load: true | |
tags: invoiceninja/invoiceninja-debian:test | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |