forked from flatpak/xdg-desktop-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (78 loc) · 2.08 KB
/
pages.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Documentation & Website
on: [push, pull_request]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-20.04
container:
image: fedora:latest
steps:
- name: Install dependencies
run: |
dnf install -y \
desktop-file-utils \
flatpak-devel \
fontconfig-devel \
fuse3 \
fuse3-devel \
gcc \
gdk-pixbuf2-devel \
geoclue2-devel \
gettext \
glib2-devel \
gnome-desktop-testing \
gtk-doc \
json-glib-devel \
libcap \
libcap-devel \
libportal-devel \
llvm \
meson \
pipewire-devel \
python3-gobject \
shared-mime-info \
systemd-devel
- name: Install dependencies for doc builds
run: |
dnf install -y \
ca-certificates \
git \
python-sphinx-copybutton \
python-sphinxext-opengraph \
python3-furo \
python3-sphinx
- name: Check out xdg-desktop-portal
uses: actions/checkout@v3
- name: Build docs
run: |
meson setup builddir -Ddocumentation=enabled
ninja -C builddir doc/html
- name: Build website
uses: actions/jekyll-build-pages@v1
with:
source: ./doc/website
destination: ./_site
- name: Prepare docs
working-directory: builddir/doc
run: |
mv ./html ../../_site/docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2