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