Add sqlite3 and VS Code extension (#327) #256
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 | |
| - name: Build | |
| run: | | |
| git config user.name github-actions | |
| git config user.email github-actions@github.com | |
| ruby build.rb | |
| if ! git diff --exit-code | |
| then | |
| git add . | |
| git commit -m "setup guides generated" | |
| git push | |
| fi |