This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
Fetch Fortnite API #4120
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 Fortnite API | |
on: | |
schedule: | |
- cron: '*/10 * * * *' | |
permissions: write-all | |
jobs: | |
fetch_api: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pip install requests | |
- name: Fetch Fortnite API | |
run: python fetch_spark_tracks.py | |
- name: Archive response content | |
uses: actions/upload-artifact@v2 | |
with: | |
name: SparksTracks | |
path: transformed_data.json | |
- name: Commit and push artifact | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions" | |
git add transformed_data.json timestamp.json | |
git commit -m "Update spark tracks" | |
git push |