mirror of
https://github.com/TeamMidnightDust/BetterLeavesLite.git
synced 2025-12-14 11:45:09 +01:00
GitHub Action to build pack artifacts
This commit is contained in:
8
.github/ISSUE_TEMPLATE/mod_support.md
vendored
Normal file
8
.github/ISSUE_TEMPLATE/mod_support.md
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
name: Mod Support
|
||||
about: Compatibility improvements with a specific mod
|
||||
title: 'MOD NAME HERE (url here)'
|
||||
labels: mod support
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
28
.github/workflows/assemble.yml
vendored
Normal file
28
.github/workflows/assemble.yml
vendored
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user