commit 4a54c8a16a77bb2072f8d7d9b793e92525a29dbf from: Bradley Taunt date: Mon Jul 15 13:02:00 2024 UTC Default back to original build config since srht builds are not very robust commit - bcdf597bd49a36ffbad782e2e3a9dbe750c8a154 commit + 4a54c8a16a77bb2072f8d7d9b793e92525a29dbf blob - 60d57a443d9f5d3ed2d6ae4e680c9de47702691d blob + 9fd55ccba0634657c3713e487200a28dacffaae7 --- .build.yml +++ .build.yml @@ -1,21 +1,23 @@ 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: -- build : | - if [ "$SRHT_BRANCH" = "deploy" ]; then - echo "On deploy branch, proceeding with package installation and build..."; - apk add --no-cache go hut ruby-full ruby-dev - sudo gem install bundler - cd 1kb-club - sudo bundle install - sudo bundle exec jekyll build - cd 1kb-club/_site - tar -cvz . > ../../site.tar.gz - hut pages publish -d 1kb.club site.tar.gz - else - echo "Not on deploy branch, skipping build and upload."; - fi \ No newline at end of file +- install-bundler: | + sudo gem install bundler +- build: | + cd 1kb-club + sudo bundle install + sudo bundle exec jekyll build +- package: | + cd 1kb-club/_site + tar -cvz . > ../../site.tar.gz +- upload: | + hut pages publish -d 1kb.club site.tar.gz \ No newline at end of file