Skip to content

Supervisor pip to uv #210

Supervisor pip to uv

Supervisor pip to uv #210

Workflow file for this run

name: Builder
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Build devcontainer
strategy:
matrix:
devcontainer:
- "addons"
- "supervisor"
steps:
- name: 📥 Checkout the repository
uses: actions/[email protected]
- name: 🏗 Set up QEMU
uses: docker/[email protected]
- name: 🏗 Set up Docker Buildx
uses: docker/[email protected]
- name: 🔓 Registry login
if: github.event_name == 'push'
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🛠️ Build devcontainer (${{ matrix.devcontainer }})
uses: docker/[email protected]
with:
context: .
file: ./${{ matrix.devcontainer }}/Dockerfile
platforms: linux/amd64,linux/arm64
tags: ghcr.io/${{ github.repository_owner }}/devcontainer:${{ matrix.devcontainer }}
push: ${{ github.event_name == 'push' }}