mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
* update: release * fix * fix * fix * Update docker.yml * fix --------- Co-authored-by: Théo LAGACHE <theo.lagache@soluce-technologies.com>
29 lines
607 B
YAML
29 lines
607 B
YAML
name: PR Checker
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
dry-run:
|
|
name: Dry run
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/dockerfile/Dockerfile
|
|
push: false
|
|
tags: portabase/portabase:pr-${{ github.event.number }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|