21 lines
422 B
YAML
21 lines
422 B
YAML
name: 'test_Bt'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
bot:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout codes'
|
|
uses: actions/checkout@v2
|
|
- name: 'Get Tracker'
|
|
run: bash ./bt.sh
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
Tracker_token: ${{ secrets.TRACKER_TOKEN }}
|
|
publish_dir: ./tracker
|
|
|