fix: new workflow CI (#114)

* update: release

* fix

* fix

* fix

* Update docker.yml

* fix

---------

Co-authored-by: Théo LAGACHE <theo.lagache@soluce-technologies.com>
This commit is contained in:
Théo LAGACHE
2026-03-03 16:39:59 +01:00
committed by GitHub
co-authored by Théo LAGACHE
parent dcdce63e15
commit 340e7c3e00
10 changed files with 1543 additions and 238 deletions
+28
View File
@@ -0,0 +1,28 @@
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