Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-package-exporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:

update-packagejson:
needs: check-existing-package
uses: .github/workflows/reusable-update-packagejson.yaml
uses: ./.github/workflows/reusable-update-packagejson.yaml
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}
Expand All @@ -106,7 +106,7 @@ jobs:

build-package:
needs: update-packagejson
uses: .github/workflows/reusable-build-package.yaml
uses: ./.github/workflows/reusable-build-package.yaml
secrets:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
Expand All @@ -120,7 +120,7 @@ jobs:
merge-and-push:
needs: update-packagejson
if: ${{ needs.update-package-json.outputs.changed == '1' }}
uses: .github/workflows/reusable-merge-and-push.yaml
uses: ./.github/workflows/reusable-merge-and-push.yaml
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion Assets/Plugins/PackageExporter/Editor/Builder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using UnityEditor;
using UnityEngine;
using UnityEditor;

namespace PackageExporter.Editor
{
Expand Down
Loading