aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: 18aa7e5310f25fe1b093a968f44ceecf5e38fa87 (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
image: alpine/latest
oauth: pages.sr.ht/PAGES:RW
packages:
- go
- hut
- ruby-full
- ruby-dev
environment:
site: 1kb.club
sources:
- https://git.sr.ht/~bt/1kb-club
tasks:
- install-bundler: |
    sudo gem install bundler
- build: |
    - if [ "$SRHT_BRANCH" = "deploy" ]; then
        cd 1kb-club
        sudo bundle install
        sudo bundle exec jekyll build
      fi
- package: |
    - if [ "$SRHT_BRANCH" = "deploy" ]; then
        cd 1kb-club/_site
        tar -cvz . > ../../site.tar.gz
      fi
- upload: |
    - if [ "$SRHT_BRANCH" = "deploy" ]; then
        hut pages publish -d 1kb.club site.tar.gz
      fi