Change ruby-version to 3.3.5 (#479) #282
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: Build setup guides | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
ruby build.rb | |
if ! git diff --exit-code | |
then | |
git add . | |
git commit -m "setup guides generated" | |
git push | |
fi |