Files
peertube-collector/.github/workflows/feature-pr-build.yml
Mirko Milovanovic e7b5023134
Some checks failed
Build Docker Image for Pull Request / build (pull_request) Failing after 6s
feat: create reusable action for setting up Docker environment in workflows
2025-02-09 15:57:50 +01:00

25 lines
573 B
YAML

name: Build Docker Image for Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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