|
11 | 11 | workflow_dispatch: |
12 | 12 |
|
13 | 13 | jobs: |
14 | | - build_bundles: |
| 14 | + build_latest: |
15 | 15 | name: Build Latest Bundle |
16 | | - runs-on: ubuntu-latest |
| 16 | + uses: ./.github/workflows/build_bundle.yml |
17 | 17 |
|
| 18 | + create_release: |
| 19 | + name: Create Latest Release |
| 20 | + runs-on: ubuntu-latest |
| 21 | + needs: build_latest |
18 | 22 | steps: |
19 | 23 |
|
20 | | - - name: Checkout main repository |
21 | | - uses: actions/checkout@v4 |
| 24 | + #- name: Checkout main repository |
| 25 | + # uses: actions/checkout@v4 |
22 | 26 |
|
23 | | - - name: Prepare Blender install |
24 | | - uses: gerlero/apt-install@v1 |
25 | | - with: |
26 | | - packages: libxxf86vm1 libxfixes3 libxi6 libxkbcommon0 libgl1 |
| 27 | + #- name: Prepare Blender install |
| 28 | + # uses: gerlero/apt-install@v1 |
| 29 | + # with: |
| 30 | + # packages: libxxf86vm1 libxfixes3 libxi6 libxkbcommon0 libgl1 |
27 | 31 |
|
28 | | - - name: Prepare Python |
29 | | - run: touch requirements.txt |
| 32 | + #- name: Prepare Python |
| 33 | + # run: touch requirements.txt |
30 | 34 |
|
31 | | - - name: Set up Python |
32 | | - uses: actions/setup-python@v5 |
33 | | - with: |
34 | | - python-version: '3.11' |
| 35 | + #- name: Set up Python |
| 36 | + # uses: actions/setup-python@v5 |
| 37 | + # with: |
| 38 | + # python-version: '3.11' |
35 | 39 |
|
36 | | - - uses: moguri/setup-blender@v1 |
37 | | - with: |
38 | | - blender-version: '4.2.7' |
| 40 | + #- uses: moguri/setup-blender@v1 |
| 41 | + # with: |
| 42 | + # blender-version: '4.2.7' |
39 | 43 |
|
40 | | - - uses: lukka/get-cmake@latest |
| 44 | + #- uses: lukka/get-cmake@latest |
41 | 45 |
|
42 | | - - name: Package bundle |
43 | | - shell: bash |
44 | | - run: | |
45 | | - build_dir="${{ github.workspace }}/build" |
46 | | - mkdir ${build_dir} |
47 | | - cmake -B ${build_dir} -S . -DCMAKE_BUILD_TYPE=Latest |
48 | | - cmake --build ${build_dir} |
49 | | - unzip -q "${build_dir}/BlendLuxCore-Latest.zip" -d "${{ github.workspace }}/unzip" |
| 46 | + #- name: Package bundle |
| 47 | + # shell: bash |
| 48 | + # run: | |
| 49 | + # build_dir="${{ github.workspace }}/build" |
| 50 | + # mkdir ${build_dir} |
| 51 | + # cmake -B ${build_dir} -S . -DCMAKE_BUILD_TYPE=Latest |
| 52 | + # cmake --build ${build_dir} |
| 53 | + # unzip -q "${build_dir}/BlendLuxCore-Latest.zip" -d "${{ github.workspace }}/unzip" |
50 | 54 |
|
51 | | - - name: Upload artifact |
52 | | - uses: actions/upload-artifact@v4 |
53 | | - with: |
54 | | - name: "BlendLuxCore" |
55 | | - path: "${{ github.workspace }}/unzip/*" |
| 55 | + #- name: Upload artifact |
| 56 | + # uses: actions/upload-artifact@v4 |
| 57 | + # with: |
| 58 | + # name: "BlendLuxCore" |
| 59 | + # path: "${{ github.workspace }}/unzip/*" |
56 | 60 |
|
57 | 61 | - name: Update the "latest" tag |
58 | 62 | uses: richardsimko/update-tag@v1 |
|
0 commit comments