-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Blender addon to standalone repo
+ re-integrate layout window into main ui + minor layout changes
- Loading branch information
1 parent
eae440a
commit e2c82ab
Showing
13 changed files
with
77 additions
and
748 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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: | | ||
|
@@ -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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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: | | ||
|
@@ -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 }}" | ||
|
Oops, something went wrong.