Skip to content

Commit

Permalink
Improve CI (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Mar 2, 2024
1 parent 84d67c3 commit acfa79b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
name: Build Container file for amd64 and arm64
name: Build Dockerfile for amd64 and arm64
runs-on: ubuntu-latest
steps:
- name: Checkout Push to Registry action
Expand All @@ -18,5 +18,11 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build the Docker image
run: docker buildx build --platform linux/amd64,linux/arm64 -t cpython_autoconf:test .
- name: Build Dockerfile
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: false
tags: |
ghcr.io/corona10/cpython_autoconf

0 comments on commit acfa79b

Please sign in to comment.