Include alpha threshold and orb darkening #59
This file contains hidden or 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: 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 |