Skip to content

Commit

Permalink
Move Blender addon to standalone repo
Browse files Browse the repository at this point in the history
+ re-integrate layout window into main ui
+ minor layout changes
  • Loading branch information
PassiveModding committed Sep 22, 2024
1 parent eae440a commit e2c82ab
Show file tree
Hide file tree
Showing 13 changed files with 77 additions and 748 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,13 @@ jobs:
working-directory: Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin
run: |
sha512sum latest.zip >> checksums.sha512
- name: Zip Blender Plugin
working-directory: Blender/
run: |
zip -r "MeddleTools-${{ github.ref_name }}.zip" .
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: |
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/latest.zip
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/checksums.sha512
Blender/MeddleTools-${{ github.ref_name }}.zip
prerelease: false # Releases cant be marked as prereleases as Dalamud wont be able to find them
append_body: true # Append the release notes to the release body
body_path: .github/release-notices.md # These notes are automatically added to the release body every time.
Expand All @@ -80,7 +74,6 @@ jobs:
path: |
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/latest.zip
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/checksums.sha512
Blender/MeddleTools-${{ github.ref_name }}.zip
- name: Update repo.json
run: |
Expand All @@ -100,12 +93,12 @@ jobs:
.[0].DownloadLinkUpdate = $repo_url |
.[0].DownloadLinkTesting = $repo_url' \
repo.json > tmp.json && mv tmp.json repo.json
cat repo.json
git add repo.json
git add repo.json
git config --local user.name "github-actions [bot]"
git config --local user.email "[email protected]"
git commit -m "Update repo.json for ${{ github.ref_name }}"
git push origin HEAD:main
git push origin HEAD:main
9 changes: 1 addition & 8 deletions .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,12 @@ jobs:
run: |
sha512sum latest.zip >> checksums.sha512
- name: Zip Blender Plugin
working-directory: Blender/
run: |
zip -r "MeddleTools-${{ github.ref_name }}.zip" .
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: |
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/latest.zip
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/checksums.sha512
Blender/MeddleTools-${{ github.ref_name }}.zip
prerelease: false # Releases cant be marked as prereleases as Dalamud wont be able to find them
append_body: true # Append the release notes to the release body
body_path: .github/release-notices.md # These notes are automatically added to the release body every time.
Expand All @@ -81,7 +75,6 @@ jobs:
path: |
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/latest.zip
Meddle/Meddle.Plugin/bin/Release/Meddle.Plugin/checksums.sha512
Blender/MeddleTools-${{ github.ref_name }}.zip
- name: Update repo.json
run: |
Expand All @@ -101,7 +94,7 @@ jobs:
cat repo.json
git add repo.json
git add repo.json
git config --local user.name "github-actions [bot]"
git config --local user.email "[email protected]"
git commit -m "Update repo.json for ${{ github.ref_name }}"
Expand Down
Loading

0 comments on commit e2c82ab

Please sign in to comment.