forked from StanFromIreland/riscv-wheels
-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (51 loc) · 1.61 KB
/
Copy pathdeploy.yml
File metadata and controls
60 lines (51 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
name: Deploy
on:
push:
branches:
- main
# Scheduled tasks only run on the main branch.
schedule:
- cron: '24 */6 * * *' # Every 6 hours
workflow_dispatch:
env:
PYTHONUNBUFFERED: 1
jobs:
deploy:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Clone code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: '3.x'
- name: Install build dependencies
run: |
python -m pip install -r requirements.txt
- name: Cache pypi.org requests-cache database
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: requests-cache.sqlite
key: requests-cache-${{ github.ref }}
restore-keys: |
requests-cache-main
- name: Fetch latest packages data and build the website
run: |
make generate
- name: Collect the built files
run: |
mkdir build/
cp index.html build/
cp wheel.css build/
cp wheel.svg build/
cp results.json build/
- name: Deploy the built files
uses: JamesIves/github-pages-deploy-action@fa24774553152dd7873cd16ebd8d959b010c5445 # v4.9.0
with:
folder: build # The folder the action should deploy.
git-config-name: github-actions[bot]
git-config-email: 41898282+github-actions[bot]@users.noreply.github.com