Skip to content

Merge pull request #1 from marctheshark3/develop #2

Merge pull request #1 from marctheshark3/develop

Merge pull request #1 from marctheshark3/develop #2

Workflow file for this run

name: Generate CSV
on:
push:
branches:
- main
jobs:
generate-csv:
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.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas
- name: Run the Python script
run: python generate_csv.py
- name: Commit and push changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
git add supported-tokens.csv
git commit -m 'Generate supported-tokens.csv'
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}