From ae529bd3a26ab23592e63c538760300383420118 Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Thu, 9 Oct 2025 19:24:08 -0300 Subject: [PATCH] =?UTF-8?q?ci(web/convex):=20usar=20diret=C3=B3rio=20de=20?= =?UTF-8?q?build=20=C3=BAnico=20por=20run=20(sistema.build.1760048648)=20p?= =?UTF-8?q?ara=20evitar=20EACCES=20em=20node=5Fmodules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-cd-web-desktop.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd-web-desktop.yml b/.github/workflows/ci-cd-web-desktop.yml index 9e6df90..7be7c1e 100644 --- a/.github/workflows/ci-cd-web-desktop.yml +++ b/.github/workflows/ci-cd-web-desktop.yml @@ -61,7 +61,8 @@ jobs: - name: Determine APP_DIR (fallback safe path) id: appdir run: | - FALLBACK_DIR="$HOME/apps/sistema" + TS=$(date +%s) + FALLBACK_DIR="$HOME/apps/sistema.build.$TS" mkdir -p "$FALLBACK_DIR" echo "Using APP_DIR (fallback)=$FALLBACK_DIR" echo "EFFECTIVE_APP_DIR=$FALLBACK_DIR" >> "$GITHUB_ENV" @@ -207,7 +208,8 @@ jobs: - name: Determine APP_DIR (fallback safe path) id: appdir run: | - FALLBACK_DIR="$HOME/apps/sistema" + TS=$(date +%s) + FALLBACK_DIR="$HOME/apps/sistema.build.$TS" mkdir -p "$FALLBACK_DIR" echo "Using APP_DIR (fallback)=$FALLBACK_DIR" echo "EFFECTIVE_APP_DIR=$FALLBACK_DIR" >> "$GITHUB_ENV"