Skip to content

Bump python from 3.12.1-slim to 3.12.2-slim (#90) #177

Bump python from 3.12.1-slim to 3.12.2-slim (#90)

Bump python from 3.12.1-slim to 3.12.2-slim (#90) #177

Workflow file for this run

name: ci-build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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 GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v5.1.0
with:
tags: ghcr.io/beryju/oauth1-test-server:latest
push: ${{ github.ref == 'refs/heads/main' }}
platforms: linux/amd64,linux/arm64