workflow to build python-3.11-dev #3
Workflow file for this run
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: Test Build Images | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-all: | |
name: Build All Architectures | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.13.1' | |
- name: Setup apko | |
run: | | |
go install chainguard.dev/apko@latest | |
- name: Build Step | |
run: | | |
make build-all |