Skip to content

Use tile alpha to determine tile influence on normals #56

Use tile alpha to determine tile influence on normals

Use tile alpha to determine tile influence on normals #56

Workflow file for this run

name: Release
# Add a concurrency group incase a tag is created, deleted, and then recreated while a release is in progress.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# on every commit to the main branch
on:
push:
branches:
- main
# So we can use the GitHub API to create releases with the run token.
permissions:
contents: write
jobs:
Test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Update blender_manifest.toml
working-directory: MeddleTools/
run: |
sed -i "s/^version = .*/version = \"${{ github.ref_name }}\"/" blender_manifest.toml
- name: Zip Blender Plugin
run: |
ls
zip -r MeddleTools-${{ github.ref_name }}.zip MeddleTools/
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: Release Artifacts
path: |
MeddleTools-${{ github.ref_name }}.zip