hexo-seo-autopush
Version:
Daily automatic submission of urls to baidu and Google bing
74 lines (63 loc) • 2.1 kB
JavaScript
module.exports = function () {
const config = this.config.hexo_seo_autopush // 获取配置信息
const ymlPath = '.github/workflows/HexoSeoAutoPush.yml'
const cron = config.cron || '0 4 * * *' // 执行周期
const config_url = this.config.url // 获取博客地址||注:我并没有使用for_url()方法(Hexo5.0后没有root了)
// baidu
const baiduEnable = config.baidu.enable
// bing
const bingEnable = config.bing.enable
// google
const googleEnable = config.google.enable
// deployBranch
const deployBranch = config.deployBranch
return {
path: ymlPath,
data: `
name: Hexo SEO Auto Push
on:
schedule:
- cron: ${cron}
watch:
types: [started]
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id || github.event_name == 'schedule'
steps:
- uses: actions/checkout@main
${deployBranch ? 'with:' : ''}
${
deployBranch
? `ref: '${deployBranch}'`
: ''
}
- uses: actions/setup-node@main
with:
node-version: latest
- run: |
npm init -y
npm install hexo-seo-autopush
${googleEnable ? '- name: google push' : ''}
${
googleEnable
? 'run: npx hexoautopush ${{secrets.google_client_email}} ${{secrets.google_private_key}}'
: ''
}
${bingEnable ? '- name: bing push' : ''}
${
bingEnable
? 'run: curl -X POST "https://ssl.bing.com/webmaster/api.svc/json/SubmitUrlBatch?apikey=${{secrets.bing_apikey}}" -H "Content-Type:application/json" -H "charset:utf-8" -d @bing.json'
: ''
}
${baiduEnable ? '- name: baidu push' : ''}
${
baiduEnable
? 'run: curl -H "Content-Type:text/plain" --data-binary @baidu.txt "http://data.zz.baidu.com/urls?site=' +
config_url +
'&token=${{secrets.baidu_token}}"'
: ''
}
`
}
}