Skip to content

Commit

Permalink
Build: Include ep_taskbar again
Browse files Browse the repository at this point in the history
  • Loading branch information
Amrsatrio committed Jul 31, 2024
1 parent 7e0f7eb commit d9595fc
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,32 +91,32 @@ jobs:
run: |
BuildDependencies%BUILD_CONFIGURATION%.bat
# - name: Download ep_taskbar
# uses: robinraju/release-downloader@v1
# with:
# repository: ExplorerPatcher/ep_taskbar_releases
# fileName: ep_taskbar.*.dll
# latest: true
# out-file-path: build/Release
- name: Download ep_taskbar
uses: robinraju/release-downloader@v1
with:
repository: ExplorerPatcher/ep_taskbar_releases
fileName: ep_taskbar.*.dll
latest: true
out-file-path: build/Release

# build/Release/ep_taskbar.*.amd64.dll -> build/Release/x64/ep_taskbar.*.dll
# build/Release/ep_taskbar.*.arm64.dll -> build/Release/ARM64/ep_taskbar.*.dll
# - name: Move ep_taskbar
# shell: bash
# run: |
# if ls build/Release/ep_taskbar.*.amd64.dll 1> /dev/null 2>&1; then
# mkdir -p build/Release/x64
# for file in build/Release/ep_taskbar.*.amd64.dll; do
# mv "$file" "build/Release/x64/$(basename "$file" .amd64.dll).dll"
# done
# fi
#
# if ls build/Release/ep_taskbar.*.arm64.dll 1> /dev/null 2>&1; then
# mkdir -p build/Release/ARM64
# for file in build/Release/ep_taskbar.*.arm64.dll; do
# mv "$file" "build/Release/ARM64/$(basename "$file" .arm64.dll).dll"
# done
# fi
- name: Move ep_taskbar
shell: bash
run: |
if ls build/Release/ep_taskbar.*.amd64.dll 1> /dev/null 2>&1; then
mkdir -p build/Release/x64
for file in build/Release/ep_taskbar.*.amd64.dll; do
mv "$file" "build/Release/x64/$(basename "$file" .amd64.dll).dll"
done
fi
if ls build/Release/ep_taskbar.*.arm64.dll 1> /dev/null 2>&1; then
mkdir -p build/Release/ARM64
for file in build/Release/ep_taskbar.*.arm64.dll; do
mv "$file" "build/Release/ARM64/$(basename "$file" .arm64.dll).dll"
done
fi
- name: Build EP IA-32
if: github.event.inputs.config == ''
Expand Down

0 comments on commit d9595fc

Please sign in to comment.