-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (30 loc) · 979 Bytes
/
deploy.yaml
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
name: Deploy
on: [push]
permissions:
contents: read
deployments: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: "Check out the repository"
uses: actions/checkout@v3
- name: "Setup Python"
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Python Dependencies Install
run: pip install -r requirements.txt
- name: Run script
run: python -m stigaview_static -o out products
- name: Copy Static Assets
run: cp --verbose -r static/ out/static
- name: Publish
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: 'stigaview-static'
directory: 'out'
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.repository == 'Mab879/stigaview-static' && github.ref == 'refs/heads/master'}}