12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- // 执行脚本 taro build --type h5 ,并且把环境变量 TARO_API_URL 传递过去
- const { execSync } = require('child_process');
- const fs = require('fs');
- const path = require('path');
- function isCI() {
- const isCI = process.env.CI === 'true' || !!process.env.GITHUB_ACTIONS;
- return isCI;
- }
- function getGhToken() {
- // 1. 在 GitHub Actions 里官方会注入 ACTIONS_RUNTIME_TOKEN 或 CI=true
- const isCI = process.env.CI === 'true' || !!process.env.GITHUB_ACTIONS;
- if (isCI) {
- console.log(`you are running in ic and the GH_token is ${process.env.GH_TOKEN}`)
- // CI 环境:直接拿 secret(工作流里必须 env:{GH_TOKEN:${{secrets.GH_TOKEN}}})
- const token = process.env.GH_TOKEN;
- if (!token) throw new Error('CI 环境缺少 GH_TOKEN,请检查 workflow yaml');
- return token;
- }
- // 2. 本地开发:优先读本地 ~/.gh-token(自己放的),没有再读环境变量,还没有就空
- try {
- return readFileSync(join(require('os').homedir(), '.gh-token'), 'utf8').trim();
- } catch {
- return process.env.GH_TOKEN || '';
- }
- }
- const TARO_API_URL = 'http://192.168.110.112:6001'; // 远程地址,这里写死,要做成部署后可配置
- const TARO_MQTT_URL = 'ws://localhost:8083/mqtt';
- const rootDir = path.join(__dirname, '..'); // 项目根目录
- execSync(`npm run build:h5`, { cwd: rootDir, stdio: 'inherit', env: { ...process.env, TARO_API_URL, TARO_MQTT_URL } }, (error, stdout, stderr) => {
- if (error) {
- console.error(`Error executing command: ${error.message}`);
- return;
- }
- if (stderr) {
- console.error(`Command stderr: ${stderr}`);
- return;
- }
- console.log(`Command stdout: ${stdout}`);
- });
|