Skip to content

Upload civitai badge for README #26

Upload civitai badge for README

Upload civitai badge for README #26

Workflow file for this run

name: Release Subfolders
# Trigger the workflow on push to the main branch
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest # Use the latest Ubuntu runner
steps:
- name: Checkout repository
uses: actions/checkout@v4 # Check out the repository
- name: Set up Python
uses: actions/setup-python@v4 # Set up Python environment
with:
python-version: '3.x' # Specify Python version
- name: Install dependencies
run: |
pip install PyGithub # Install PyGithub library
- name: Check and create releases
env:
GITHUB_TOKEN: ${{ secrets.PAT }} # Use GitHub token from secrets
run: |
python scripts/create_releases.py # Run the Python script from the /scripts/ folder