-
Notifications
You must be signed in to change notification settings - Fork 14
51 lines (37 loc) · 1.11 KB
/
gh-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
name: github pages
on:
push:
branches:
- master
permissions:
contents: read
jobs:
deploy:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791
# - name: install extra repository
# run: sudo add-apt-repository ppa:kelleyk/emacs
- name: refresh apt
run: sudo apt-get update
- name: install dependencies
run: sudo apt-get install emacs autoconf
- name: ./autogen.sh
run: ./autogen.sh
- name: ./configure
run: QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --without-trexio
- name: make
run: make -j 8 html
- name: pwd
run: pwd
- name: ls
run: ls -sh ./share/doc/qmckl/html/
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3dbacc7e69578703f91f077118b3475862cb09b8
with:
branch: gh-pages
folder: ./share/doc/qmckl/html/
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./share/doc/qmckl/html/