Remove old doc #205
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- "**" # matches every branch | |
- "!main" # excludes main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install jq | |
run: sudo apt-get install -y jq | |
- name: Run build | |
run: make build | |
- name: Validate | |
run: make validate | |
- name: Commit changes | |
run: | | |
git config --global user.name 'Aleksandr Elmekeev' | |
git config --global user.email 'donamok@gmail.com' | |
git diff --exit-code || git commit -am "make build" && git push |