Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Merge pull request #3 from thedadams/arm64-image #3

Merge pull request #3 from thedadams/arm64-image

Merge pull request #3 from thedadams/arm64-image #3

Workflow file for this run

name: Main
on:
push:
branches: [master]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
buildkitd-flags: --debug
- name: Log in to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
run: |
docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/${{ github.repository_owner }}/aws-encryption-provider:main --push .