Compare commits

...

3 Commits

Author SHA1 Message Date
TakahashiNguyen df8a6fc96f fix: better ci (#9)
Release package / release (push) Successful in 5m10s
Release package / build-and-push (push) Successful in 3m50s
Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com>
Reviewed-on: #9
2026-03-29 14:28:13 +00:00
TakahashiNguyen 8d0247024d Merge pull request 'fix: better ci script' (#7) from dev-cicd into main
Release package / release (push) Failing after 4m38s
Release package / build-and-push (push) Has been skipped
Reviewed-on: #7
2026-03-29 14:15:26 +00:00
TakahashiNg 9ad66301de ci: better ci
Release package / release (push) Successful in 2m23s
Release package / build-and-push (push) Has been skipped
2026-03-29 14:12:07 +00:00
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -87,7 +87,9 @@ jobs:
git config --global user.name "gitea-actions"
git config --global user.email "actions-user@noreply.git.demonkernel.io.vn"
git remote set-url origin ssh://git@$TARGET_IP:222/FoodSurf/backend.git
REPO_NAME="${{ gitea.repository }}"
git remote set-url origin ssh://git@$TARGET_IP:222/${REPO_NAME}.git
git rm -r --cached .
git add .
+1 -1
View File
@@ -10,7 +10,7 @@ const zipPath = "release.zip";
console.log(`📦 Đang nén file cho version: ${version}...`);
execSync(`zip -r ${zipPath} out`, {
execSync(`cd out && zip -r ../${zipPath} .`, {
stdio: "inherit",
});