diff --git a/.github/ISSUE_TEMPLATE/mod_support.md b/.github/ISSUE_TEMPLATE/mod_support.md new file mode 100644 index 0000000..b871134 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/mod_support.md @@ -0,0 +1,8 @@ +--- +name: Mod Support +about: Compatibility improvements with a specific mod +title: 'MOD NAME HERE (url here)' +labels: mod support +assignees: '' + +--- diff --git a/.github/workflows/assemble.yml b/.github/workflows/assemble.yml new file mode 100644 index 0000000..06305a8 --- /dev/null +++ b/.github/workflows/assemble.yml @@ -0,0 +1,28 @@ +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 diff --git a/Better-Leaves-Lite-1.0.zip b/Better-Leaves-Lite-1.0.zip index 7035d76..374330a 100644 Binary files a/Better-Leaves-Lite-1.0.zip and b/Better-Leaves-Lite-1.0.zip differ