File tree 2 files changed +32
-1
lines changed
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 84
84
tags : ghcr.io/adfinis/pyaptly/cache:latest
85
85
cache-from : type=registry,ref=ghcr.io/adfinis/pyaptly/cache:gha
86
86
87
- - name : Run tests
87
+ - name : Generate the docs
88
88
run : |
89
89
make docs
90
90
Original file line number Diff line number Diff line change 31
31
- name : Run tests
32
32
run : |
33
33
HYPOTHESIS_PROFILE=ci make test
34
+
35
+ docs :
36
+ runs-on : ubuntu-latest
37
+
38
+ steps :
39
+ - name : Checkout code
40
+ uses : actions/checkout@v4
41
+
42
+ - name : Set up Docker Buildx
43
+ uses : docker/setup-buildx-action@v3
44
+ with :
45
+ buildkitd-flags : --debug
46
+
47
+ - name : Build container
48
+ uses : docker/build-push-action@v5
49
+ with :
50
+ context : compose
51
+ push : false
52
+ load : true
53
+ tags : ghcr.io/adfinis/pyaptly/cache:latest
54
+ cache-from : type=registry,ref=ghcr.io/adfinis/pyaptly/cache:gha
55
+
56
+ - name : Generate the docs
57
+ run : |
58
+ make docs
59
+
60
+ - name : Upload artifacts
61
+ uses : actions/upload-artifact@v3
62
+ with :
63
+ name : html-docs
64
+ path : docs/_build/html/
You can’t perform that action at this time.
0 commit comments