From 9772ea855122920189b0a4e460148c54f14a3bb2 Mon Sep 17 00:00:00 2001 From: tomato Date: Sun, 25 May 2025 22:32:49 -0400 Subject: [PATCH] test workflow --- .forgejo/workflows/build.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .forgejo/workflows/build.yaml 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 +