File size: 932 Bytes
e0675e2
eccbbd1
 
e0675e2
 
 
 
a4be0a3
 
e0675e2
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const { execSync } = require("child_process");
const path = require("path");

const token = process.env["sc4sc_token"];
if (!token) {
  console.error("環境変数 'sc4sc_token' が設定されていません。");
  process.exit(1);
}

const repoPath = path.join(__dirname, "dist");
const remoteUrl = `https://user:${token}@huggingface.co/spaces/soiz1/simple-editor`;
console.log("接続完了!...");
try {
  console.log("Git リポジトリを初期化...");
  execSync("git init", { cwd: repoPath });
  execSync(`git remote add origin ${remoteUrl}`, { cwd: repoPath });
  execSync("git add .", { cwd: repoPath });
  execSync('git commit -m "Automated deploy"', { cwd: repoPath });
  execSync("git push -f origin master", { cwd: repoPath }); // -f で強制上書き
  console.log("✅ アップロードが完了しました!");
} catch (err) {
  console.error("❌ アップロードに失敗しました:", err.message);
}