fix output order #6
Workflow file for this run
This file contains hidden or 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: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Build | |
| run: | | |
| git config user.name github-actions | |
| git config user.email github-actions@github.com | |
| bundle exec ruby build.rb | |
| if ! git diff --exit-code | |
| then | |
| git add . | |
| git commit -m "setup guides generated" | |
| git push | |
| fi |