Update live.html #1505
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github 163 mv 2h | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
# workflow_dispatch: | |
# schedule: | |
# # 定时任务,每隔 1 小时执行 | |
# - cron: '36 * * * *' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
Build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# Runs a single command using the runners shell | |
- name: 'Set up Python' | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: 'Install requirements' | |
run: | | |
pip install -r ./requirements.txt | |
npm install crypto-js | |
- name: Install ChromeDriver | |
run: | | |
CHROME_VERSION=$(google-chrome --version | cut -f 3 -d ' ' | cut -d '.' -f 1) \ | |
&& CHROMEDRIVER_RELEASE=$(curl --location --fail --retry 3 http://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_VERSION}) \ | |
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/chromedriver_linux64.zip "http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_RELEASE/chromedriver_linux64.zip" \ | |
&& cd /tmp \ | |
&& unzip chromedriver_linux64.zip \ | |
&& rm -rf chromedriver_linux64.zip \ | |
&& sudo mv chromedriver /usr/local/bin/chromedriver \ | |
&& sudo chmod +x /usr/local/bin/chromedriver \ | |
&& chromedriver --version | |
- name: 'Working 163 MV JavaScript Reverse' # 把这个放在前面 是因为后面的那个代码 可能会报错 | |
env: | |
PASSWORD: ${{ secrets.PASSWORD }} | |
run: python ./api/get_163_mv_vercel/get-new-url/main_local.py | |
- name: 'Working 163 MV Crawler' | |
env: | |
PASSWORD: ${{ secrets.PASSWORD }} | |
run: python ./api/get_163_mv/Action-fresh.py |