-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (38 loc) · 1 KB
/
actions.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
name: Build and deploy dashboard
on:
push:
branches:
- 'coverview'
jobs:
build:
runs-on: ubuntu-latest
container:
image: debian:bookworm
name: Build
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Add coverview
run: ls && mkdir dist && sed -i 's/DATA_PLACEHOLDER/https:\/\/chipsalliance\.github\.io\/Cores-VeeR-EL2\/html\/main\/data_v\.zip/' index.html && cp index.html dist
- name: Upload dist
uses: actions/upload-artifact@v3
with:
name: coverview
path: ./dist/
deploy:
runs-on: ubuntu-latest
needs: [build]
permissions:
contents: write
repository-projects: write
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: coverview
path: ./dist
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist