Fetch Remote Files #36
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: Fetch Remote Files | |
on: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: ~ | |
jobs: | |
Fetch-Remote-Files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@master | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
- name: Fetch Remote Files | |
run: | | |
export FILE_PATH="${{ vars.FILE_PATH }}" | |
python main.py | |
python achievements.py | |
python roles_material.py | |
cp src/calendar.json Resources/calendar.json | |
cp src/birthday.json Resources/birthday.json | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: github-actions[bot] | |
author_email: github-actions[bot]@users.noreply.github.com | |
push: 'origin remote --force' | |
new_branch: 'remote' | |
message: ':sparkles: Fetch Remote Files' | |
add: | | |
'Resources' |