diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..aa86293 --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,21 @@ +on: + push: + branches: + - citest + +jobs: + build: + runs-on: docker +# container: +# image: ruby:33 + + steps: + - uses: https://code.forgejo.org/actions/checkout@v4 + - uses: https://github.com/ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + - name: Install dependencies + run: bundle install + - name: Build site + run: jekyll build --future --config _config.yml +