-
Notifications
You must be signed in to change notification settings - Fork 38
49 lines (46 loc) · 1.3 KB
/
main.yml
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
44
45
46
47
48
49
name: Generator
on:
schedule:
- cron: "0 21 * * *"
workflow_dispatch:
jobs:
generator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: develop
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: "x64"
- name: Get Python version
run: python -V
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v3
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run Python
run: python generator.py
env:
ENV: "GithubAction"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
- name: Run Python (Deck)
run: python generator.py
env:
ENV: "GithubAction"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
CLIENT_TYPE: Deck
OUTPUT_DIR: docs/deck