Files
peertube-collector/.github/workflows/feature-pr-build.yml
Mirko Milovanovic 04c7348e7a
Some checks failed
Build Docker Images for Pull Request / build (pull_request) Failing after 5m38s
feat: add convenience functions, update Docker setup, and integrate Webpack for building WebRTC internals exporter
2025-02-19 22:09:10 +01:00

37 lines
1015 B
YAML

name: Build Docker Images for Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository actions
uses: actions/checkout@v2
- name: Setup Docker Environment
uses: ./.github/actions/setup-docker-environment
- name: Build Docker image
uses: docker/build-push-action@v6.13.0
with:
context: .
push: false
tags: ${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.event.pull_request.number }}
platforms: |
linux/amd64
linux/arm64
- name: Build monolith Docker image
uses: docker/build-push-action@v6.13.0
with:
context: .
tags: ${{ env.REGISTRY_URL }}/${{ github.event.repository.name }}:${{ github.event.pull_request.number }}-monolith
file: ./Monolith.Dockerfile
platforms: |
linux/amd64
linux/arm64