diff --git a/.github/workflows/build-dev-linux.yml b/.github/workflows/build-dev-linux.yml index 0599198..241d763 100644 --- a/.github/workflows/build-dev-linux.yml +++ b/.github/workflows/build-dev-linux.yml @@ -101,6 +101,12 @@ jobs: echo "commitSHA=$(git show-ref | grep refs/remotes/origin/dev | cut -c1-40)" >> "$GITHUB_OUTPUT" && echo "commitShortSHA=$(git show-ref | grep refs/remotes/origin/dev | cut -c1-7)" >> "$GITHUB_OUTPUT" + - name: "[Pre-install] Pull bleeding-edge repo" + uses: actions/checkout@v3 + with: + repository: ${{ github.repository }} + path: bleedingedge + ########################### # Cache # ########################### @@ -147,6 +153,13 @@ jobs: - name: "[Pre-install] Restoring NuGet Packages" run: dotnet tool install --global NuGetForUnity.Cli && nugetforunity restore + ########################### + #Replace icon with nightly# + ########################### + - name: "[Pre-build] Replace icon with Nightly/Development" + shell: bash + run: "cp -f bleedingedge/static/Icon_Nightly.png Assets/Art/UI/Icon_Stable.png" + ########################### # Build # ########################### diff --git a/.github/workflows/build-dev-mac.yml b/.github/workflows/build-dev-mac.yml index 579a4bf..e81365d 100644 --- a/.github/workflows/build-dev-mac.yml +++ b/.github/workflows/build-dev-mac.yml @@ -69,6 +69,12 @@ jobs: echo "commitSHA=$(git show-ref | grep refs/remotes/origin/dev | cut -c1-40)" >> "$GITHUB_OUTPUT" && echo "commitShortSHA=$(git show-ref | grep refs/remotes/origin/dev | cut -c1-7)" >> "$GITHUB_OUTPUT" + - name: "[Pre-install] Pull bleeding-edge repo" + uses: actions/checkout@v3 + with: + repository: ${{ github.repository }} + path: bleedingedge + ########################### # Cache # ########################### @@ -112,6 +118,13 @@ jobs: - name: "[Pre-install] Restoring NuGet Packages" run: dotnet tool install --global NuGetForUnity.Cli && nugetforunity restore + ########################### + #Replace icon with nightly# + ########################### + - name: "[Pre-build] Replace icon with Nightly/Development" + shell: bash + run: "cp -f bleedingedge/static/Icon_Nightly.png Assets/Art/UI/Icon_Stable.png" + ########################### # Build # ########################### diff --git a/.github/workflows/build-dev-windows.yml b/.github/workflows/build-dev-windows.yml index 7a9bbd7..3054476 100644 --- a/.github/workflows/build-dev-windows.yml +++ b/.github/workflows/build-dev-windows.yml @@ -96,6 +96,12 @@ jobs: "commitSHA=$(git show-ref | grep refs/remotes/origin/dev | cut -c1-40)" >> $env:GITHUB_OUTPUT; "commitShortSHA=$(git show-ref | grep refs/remotes/origin/dev | cut -c1-7)" >> $env:GITHUB_OUTPUT; + - name: "[Pre-install] Pull bleeding-edge repo" + uses: actions/checkout@v3 + with: + repository: ${{ github.repository }} + path: bleedingedge + ########################### # Cache # ########################### @@ -143,6 +149,13 @@ jobs: - name: "[Pre-install] Restoring NuGet Packages" run: dotnet tool install --global NuGetForUnity.Cli && nugetforunity restore + ########################### + #Replace icon with nightly# + ########################### + - name: "[Pre-build] Replace icon with Nightly/Development" + shell: bash + run: "cp -f bleedingedge/static/Icon_Nightly.png Assets/Art/UI/Icon_Stable.png" + ########################### # Build # ########################### diff --git a/static/Icon_Development.png b/static/Icon_Development.png new file mode 100644 index 0000000..0593d50 Binary files /dev/null and b/static/Icon_Development.png differ diff --git a/static/Icon_Nightly.png b/static/Icon_Nightly.png new file mode 100644 index 0000000..11c21b2 Binary files /dev/null and b/static/Icon_Nightly.png differ diff --git a/static/Icon_Stable.png b/static/Icon_Stable.png new file mode 100644 index 0000000..38a01ad Binary files /dev/null and b/static/Icon_Stable.png differ