Skip to content

Commit 4c5d4fe

Browse files
authored
Merge pull request #124 from IShix-g/release
v1.0.61
2 parents db700a9 + 36727c2 commit 4c5d4fe

21 files changed

+39
-18
lines changed

.github/workflows/build-package-exporter.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,11 @@ jobs:
101101
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}
102102
with:
103103
ref: ${{ github.ref }}
104-
file-path: ./Assets/Plugins/PackageExporter/package.json
104+
file-path: ./Assets/PackageExporter/package.json
105105
tag: ${{ inputs.tag }}
106106
dry-run: ${{ inputs.dry-run }}
107107
require-validation: false
108+
commit-message-format: 'Update the Package Exporter package.json to {v}'
108109

109110
build-package:
110111
needs: [verify-branch, get-latest-release, check-existing-package, update-packagejson]

Assets/Editor/PackageExporterSetting.asset

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ MonoBehaviour:
1212
m_Script: {fileID: 11500000, guid: adb346ada09d4f62892e782d664fc210, type: 3}
1313
m_Name: PackageExporterSetting
1414
m_EditorClassIdentifier:
15-
_folderPath: Assets/Plugins/PackageExporter/
15+
_folderPath: Assets/PackageExporter/
16+
_isCompletedTest: 1
File renamed without changes.
File renamed without changes.

Assets/Plugins/PackageExporter/Editor/Builder.cs renamed to Assets/PackageExporter/Editor/Builder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ internal sealed class Builder
1313
public static void Build()
1414
{
1515
var assetsFolderPath = PackageExporterSetting.Instance.FolderPath;
16-
if (!string.IsNullOrWhiteSpace(assetsFolderPath))
16+
var isCompletedTest = PackageExporterSetting.Instance.IsCompletedTest;
17+
if (!string.IsNullOrWhiteSpace(assetsFolderPath) && isCompletedTest)
1718
{
1819
var options = ArgumentsParser.GetValidatedOptions();
1920
var buildPath = options.GetValueOrDefault("customBuildPath");

0 commit comments

Comments
 (0)