From ad18e67345c8c76b47dce16665b9e1bebd91c15d Mon Sep 17 00:00:00 2001 From: deathrow Date: Wed, 1 Feb 2023 15:40:11 -0500 Subject: [PATCH] Update workflow --- .gitea/workflows/build.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 847dfe6..5bb56e0 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,12 +1,13 @@ -kind: pipeline name: Jekyll build -type: docker +on: [push] -steps: -- name: build - image: ruby:3.1.3 - commands: - - gem update - - gem install bundler - - bundle install - - bundle exec jekyll build \ No newline at end of file +jobs: + lint: + name: build + runs-on: ruby:3.1.3 + steps: + commands: + - gem update + - gem install bundler + - bundle install + - bundle exec jekyll build \ No newline at end of file