blob: 51247021f7a813dc1212bb6e57d11f433c229831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Required
version: 2
build:
os: ubuntu-24.04
tools:
ruby: "3.3"
commands:
- gem install bundler
- bundle install
- mkdir Mabbs
- curl -L -o Mabbs/README.md https://github.com/Mabbs/Mabbs/raw/main/README.md
- bundle exec jekyll build --destination $READTHEDOCS_OUTPUT/html
- tar czvf MayxBlog.tgz -C $READTHEDOCS_OUTPUT html
- mv MayxBlog.tgz $READTHEDOCS_OUTPUT/html
|