Skip to content

Commit

Permalink
CI: Use container file, build multiarch
Browse files Browse the repository at this point in the history
  • Loading branch information
bbusse committed May 4, 2023
1 parent 38ba7ea commit df61dea
Showing 2 changed files with 10 additions and 13 deletions.
7 changes: 0 additions & 7 deletions .github/dependabot.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
name: Docker Image CI
name: Build Container Image

on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
branches:
- '**'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
branches:
- '**'
workflow_dispatch:

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
@@ -32,9 +35,10 @@ jobs:

- name: Build and push to ghcr
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
platforms: linux/amd64
platforms: linux/arm64, linux/amd64
file: Containerfile
push: true
tags: ghcr.io/bbusse/swayvnc-firefox:latest

0 comments on commit df61dea

Please sign in to comment.