[#63] app: add Neo Store in App Stores #115
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 content | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: update content | |
run: |- | |
python scripts/build.py | |
- name: config bot | |
run: |- | |
git config --global user.email "[email protected]" | |
git config --global user.name "readme-bot" | |
- name: commit and push if something changed | |
run: |- | |
git add -A | |
git commit -m "bot: rebuild content" || exit 0 | |
git push |