Cobblemon compat #5
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: Execute Python Script | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set current date as env variable | |
run: echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pillow | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Execute Python Script | |
run: python gen-pack.py ${{ env.DATE }}-${{ github.repository_owner }} | |
- name: Upload artifacts to GitHub | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Better Leaves Lite Artifact | |
path: Better-Leaves-Lite-${{ env.DATE }}-${{ github.repository_owner }}.zip |