From 20bfef646517650eb5a354fb038d6b85598246e0 Mon Sep 17 00:00:00 2001 From: Shaun Hoffer Date: Wed, 14 Aug 2024 12:51:23 -0400 Subject: [PATCH] added a test workflow --- .gitea/buildsite.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/buildsite.yml diff --git a/.gitea/buildsite.yml b/.gitea/buildsite.yml new file mode 100644 index 0000000..555e548 --- /dev/null +++ b/.gitea/buildsite.yml @@ -0,0 +1,23 @@ +--- + +name: Build site + +on: + push: + branches: [main] + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v3 + - name: Setup Jekyll + uses: https://git.ttnrtsite.me/actions/jekyll + - name: Build site + run: bundle install && bundle exec jekyll build + - name: Publish site + uses: https://git.ttnrtsite.me/actions/ttpages + with: + path: _site \ No newline at end of file