forked from fmartingr/switch-games-json
-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (39 loc) · 1.25 KB
/
deploy.yml
File metadata and controls
43 lines (39 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build pages
on:
push:
branches: [master]
schedule:
- cron: '0 0 */7 * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Current scraper without encryption (active)
- name: Run scraper (no encryption)
run: python scrape_switchbrew.py
# Original script with encryption (disabled)
# Uncomment the following lines to use the original encrypted version
# Note: Requires KEYS_PROD secret to be set in repository secrets
# - name: Install encryption dependencies
# run: pip install -r requirements.txt
# - name: Run original script (with encryption)
# run: python update.py
# env:
# KEYS_PROD: ${{ secrets.KEYS_PROD }}
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: public
force_orphan: true
user_name: Producdevity
user_email: y.gherbi.dev@gmail.com