Fix distutils link due to deprecation #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pybuilder.github.io | |
on: | |
pull_request: | |
branches: | |
- source | |
push: | |
branches: | |
- source | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.1" | |
bundler-cache: false | |
- name: Install Dependencies | |
run: bundle install | |
- name: Build Jekyll Site | |
run: $GITHUB_WORKSPACE/build.sh | |
- name: Deploy Site | |
if: ${{ github.event_name == 'push' }} | |
uses: NickSchimek/deploy_jamstack_action@main | |
with: | |
build-dir: _site | |
deploy-branch: master |