Skip to content

Commit

Permalink
feat: replace stable icon with nightly one
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantotone committed Aug 31, 2023
1 parent ca8b7f4 commit c58260f
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build-dev-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
###########################
Expand Down Expand Up @@ -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 #
###########################
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/build-dev-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
###########################
Expand Down Expand Up @@ -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 #
###########################
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/build-dev-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
###########################
Expand Down Expand Up @@ -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 #
###########################
Expand Down
Binary file added static/Icon_Development.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/Icon_Nightly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/Icon_Stable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c58260f

Please sign in to comment.