Auto Build Should Work Fine Now #6
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: Experimental Branch Auto Build | |
on: | |
push: | |
branches: | |
- Experimental | |
pull_request: | |
branches: | |
- Experimental | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install required packages | |
run: | | |
python -m pip install --upgrade pip | |
- name: Prepare Blender Addon | |
run: | | |
mkdir -p output/Mcblend | |
cp -r "Mcblend Source"/* output/Mcblend/ | |
- name: Upload folder as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Mcblend Experimental Auto Build | |
path: output/Mcblend\ Source |