blob: 223192efdfbebcc75f9ed75d5a50898a021ee4e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
image: debian/stable
packages:
- ruby-full
- ruby-dev
- rsync
sources:
- https://git.sr.ht/~bt/1mb-club
secrets:
- 07201d32-1451-4a8f-9bff-ce8b2232c67d
tasks:
- install-bundler: |
sudo gem install bundler
- build: |
cd 1mb-club
bundle install
bundle exec jekyll build
- deploy: |
cd 1mb-club
rsync --rsh="ssh -o StrictHostKeyChecking=no -i ~/.ssh/07201d32-1451-4a8f-9bff-ce8b2232c67d" -rzP _site/ bt@1mb.club:/var/www/1mb.club
|