Files
peertube-collector/.github/workflows/feature-pr-build.yml
Mirko Milovanovic 280a013c48 feat: CI-CD workflow for building and pushing Docker images (#2)
Reviewed-on: #2
Co-authored-by: Mirko Milovanovic <mir_ko@me.com>
Co-committed-by: Mirko Milovanovic <mir_ko@me.com>
2025-02-09 17:16:16 +01:00

28 lines
650 B
YAML

name: Build Docker Image 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