Skip to content

Disable Windows 11 ARM platform #8

Disable Windows 11 ARM platform

Disable Windows 11 ARM platform #8

Workflow file for this run

name: Publish to Github Container Registry
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build Docker images
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
run: |
docker buildx bake \
--push \
--provenance=true \
--set="*.cache-from=type=gha" \
--set="*.cache-to=type=gha,mode=max"