Skip to content

Fix broken test merged to main #123

Fix broken test merged to main

Fix broken test merged to main #123

name: Build docker image on push
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Build the Docker image
env:
EXTENSION_VERSION: ${{ github.head_ref || github.ref_name }}
GITHUB_ORG: ${{ github.event.pull_request.head.repo.owner.login || github.repository_owner }}
run: |
echo "FROM python:3.10-slim-bullseye" | cat - Dockerfile | docker build \
--build-arg EXTENSION_VERSION=$EXTENSION_VERSION \
--build-arg GITHUB_ORG=$GITHUB_ORG \
-