Compare commits

..

No commits in common. "ede8d95fd1cb886bb19c06fc6f806d2d1bbd0ac9" and "3f64369852e646b1e1bf2bd60a7da081f447b2c6" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@ name: Build and Push to Registry
on: on:
push: push:
branches: [ dev ] branches: [ cicd ]
env: env:
REGISTRY: git.4nkweb.com REGISTRY: git.4nkweb.com
@ -40,5 +40,4 @@ jobs:
ENV_VARS=${{ secrets.ENV_VARS }} ENV_VARS=${{ secrets.ENV_VARS }}
tags: | tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:dev
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ gitea.sha }} ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ gitea.sha }}

View File

@ -29,7 +29,7 @@ WORKDIR /build
COPY . ihm_client/ COPY . ihm_client/
# Clonage du sdk_client au même niveau que ihm_client en utilisant la clé SSH montée # Clonage du sdk_client au même niveau que ihm_client en utilisant la clé SSH montée
RUN --mount=type=ssh git clone -b dev ssh://git@git.4nkweb.com/4nk/sdk_client.git RUN --mount=type=ssh git clone -b cicd ssh://git@git.4nkweb.com/4nk/sdk_client.git
# Build du WebAssembly avec accès SSH pour les dépendances # Build du WebAssembly avec accès SSH pour les dépendances
WORKDIR /build/sdk_client WORKDIR /build/sdk_client