diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5bb56e0..6cba252 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -2,12 +2,11 @@ name: Jekyll build on: [push] jobs: - lint: - name: build + 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 + - run: gem update + - run: gem install bundler + - run: bundle install + - run: bundle exec jekyll build + uses: actions/checkout@v3 \ No newline at end of file