Skip to content

Commit

Permalink
cp
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Oct 3, 2023
1 parent 5d28c7b commit 686a7e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ jobs:
echo "SIGNTOOL_PATH=$(head -n 1 $SIGNTOOL_PATH_PATH)" >> $GITHUB_ENV
# NOTE: electron-builder 22.14.13 は指定したsigntoolを使わないのでワークアラウンド
CACHE_SIGNTOOL_PATH=$ELECTRON_BUILDER_CACHE/winCodeSign/winCodeSign-2.6.0/windows-10/x64/signtool.exe
mv $CACHE_SIGNTOOL_PATH{,.bak}
cp $SIGNTOOL_PATH $CACHE_SIGNTOOL_PATH
CACHE_SIGNTOOL_PATH="$ELECTRON_BUILDER_CACHE/winCodeSign/winCodeSign-2.6.0/windows-10/x64/signtool.exe"
mv "$CACHE_SIGNTOOL_PATH"{,.bak}
cp "$(head -n 1 $SIGNTOOL_PATH_PATH)" "$CACHE_SIGNTOOL_PATH"
env:
ESIGNERCKA_USERNAME: ${{ secrets.ESIGNERCKA_USERNAME }}
ESIGNERCKA_PASSWORD: ${{ secrets.ESIGNERCKA_PASSWORD }}
Expand Down Expand Up @@ -679,9 +679,9 @@ jobs:
echo "SIGNTOOL_PATH=$(head -n 1 $SIGNTOOL_PATH_PATH)" >> $GITHUB_ENV
# NOTE: electron-builder 22.14.13 は指定したsigntoolを使わないのでワークアラウンド
CACHE_SIGNTOOL_PATH=$ELECTRON_BUILDER_CACHE/winCodeSign/winCodeSign-2.6.0/windows-10/x64/signtool.exe
mv $CACHE_SIGNTOOL_PATH{,.bak}
cp $SIGNTOOL_PATH $CACHE_SIGNTOOL_PATH
CACHE_SIGNTOOL_PATH="$ELECTRON_BUILDER_CACHE/winCodeSign/winCodeSign-2.6.0/windows-10/x64/signtool.exe"
mv "$CACHE_SIGNTOOL_PATH"{,.bak}
cp "$(head -n 1 $SIGNTOOL_PATH_PATH)" "$CACHE_SIGNTOOL_PATH"
env:
ESIGNERCKA_USERNAME: ${{ secrets.ESIGNERCKA_USERNAME }}
ESIGNERCKA_PASSWORD: ${{ secrets.ESIGNERCKA_PASSWORD }}
Expand Down

0 comments on commit 686a7e5

Please sign in to comment.