blob: 316a15658bac4d3bac8975b6618bdce5fdbb5ffc (
plain)
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
|
image: alpine/edge
oauth: pages.sr.ht/PAGES:RW
packages:
- cargo
- hut
environment:
site: iced-dialog.pml68.dev
tasks:
- build-docs: |
cd iced_dialog
cargo doc --verbose --no-deps
- copy-redirect: |
cd iced_dialog
cp docs/redirect.html target/doc/index.html
- package: |
cd iced_dialog
tar -C target/doc -cvz . > site.tar.gz
- upload: |
cd iced_dialog
if [ "$BUILD_SUBMITTER" = "git.sr.ht" ]
then
if [ "$GIT_REF" != "refs/heads/master" ]
then
complete-build
fi
if [ "$(git remote get-url origin)" != "https://git.sr.ht/~pml68/iced_dialog" ]
then
complete-build
fi
fi
if [ "$BUILD_REASON" = "patchset" ]
then
complete-build
fi
hut pages publish -d $site site.tar.gz
|