From 285581a49e1ee37329045f112dd9e547309d5862 Mon Sep 17 00:00:00 2001 From: Shaun Hoffer Date: Fri, 13 Sep 2024 21:46:54 -0400 Subject: [PATCH] added workflow --- .gitea/workflows/buildme.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/buildme.yml diff --git a/.gitea/workflows/buildme.yml b/.gitea/workflows/buildme.yml new file mode 100644 index 0000000..c84e8ea --- /dev/null +++ b/.gitea/workflows/buildme.yml @@ -0,0 +1,25 @@ +--- + +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@main + - name: Build site + run: bundle install && bundle exec jekyll build + - name: Install git + run: apt install git -y + - name: Publish site + uses: https://git.ttnrtsite.me/actions/ttpages@main + with: + path: _site \ No newline at end of file