diff --git a/.github/workflows/pr_verification.yml b/.github/workflows/pr_verification.yml index e60e2cb..9f577c5 100644 --- a/.github/workflows/pr_verification.yml +++ b/.github/workflows/pr_verification.yml @@ -20,6 +20,7 @@ jobs: run: sudo apt-get install -y plantuml - name: Setup Pages + id: pages uses: actions/configure-pages@v3 - name: Setup Ruby @@ -33,23 +34,19 @@ jobs: gem install bundler bundle install --jobs 4 --retry 3 - - name: Build site - run: | - bundle exec jekyll build +# - name: Build site +# run: | +# bundle exec jekyll build + + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site - name: Upload artifact uses: actions/upload-pages-artifact@v1 -# - name: Setup Pages -# id: pages -# uses: actions/configure-pages@v3 - -# - name: Build with Jekyll -# uses: actions/jekyll-build-pages@v1 -# with: -# source: ./ -# destination: ./_site - deploy: runs-on: ubuntu-latest needs: build