-
Notifications
You must be signed in to change notification settings - Fork 51
41 lines (35 loc) · 897 Bytes
/
PROpened.yml
File metadata and controls
41 lines (35 loc) · 897 Bytes
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
name: PROpened
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
show-progress: false
- uses: actions/setup-python@v5
with:
python-version: 3.x
cache: 'pip'
- run: pip install -r requirements.txt
- name: Build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cat >Makefile.inc <<EOF
${{vars.MAKEFILE_INC}}
EOF
make
mkdir output
mv temp output/docs-output-${{github.event.number}}
- name: Save Output
id: save-output-temp
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: docs-output-${{github.event.number}}
path: |
output