-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:Guovin/TV
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: 'Govin' | ||
|
||
on: | ||
schedule: | ||
- cron: '0 */12 * * *' | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
push: | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
# in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded | ||
operating-system: ['ubuntu-20.04'] | ||
steps: | ||
- uses: actions/checkout@v3 # Checking out the repo | ||
- name: Run with setup-python 3.9 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
update-environment: false | ||
cache: 'pipenv' | ||
|
||
|
||
- name: Install Selenium | ||
run: | | ||
sudo pip3 install selenium | ||
- name: Set up Chrome | ||
uses: browser-actions/setup-chrome@latest | ||
with: | ||
chrome-version: stable | ||
- name: Download chrome driver | ||
uses: nanasess/setup-chromedriver@master | ||
- name: Launch chrome driver | ||
run: | | ||
export DISPLAY=:99 | ||
chromedriver --url-base=/wd/hub & | ||
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional | ||
- name: Install pipenv | ||
run: pip3 install --user pipenv | ||
- name: Install dependecies | ||
run: pipenv --python python3 && pipenv install | ||
- name: Build | ||
run: pipenv run build | ||
- name: Commit and push if changed | ||
run: | | ||
git diff | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Govin" | ||
git add result.txt | ||
git commit -m "Github Action Auto Updated" | ||
git push |