Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
y-chan committed Feb 10, 2023
1 parent 2d49218 commit 62d0ed4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:
- name: download-osx-aarch64
target: aarch64-apple-darwin
os: macos-11
runs-on: ${{ matrix.os }}
runs-on: ${{ github.event.inputs.code_signing == 'true' && startsWith(matrix.os, 'windows') && 'self-hosted' || matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install cross compiler for aarch64-unknown-linux-gnu
Expand All @@ -253,10 +253,10 @@ jobs:
if: startsWith(matrix.os, 'windows') && github.event.inputs.code_signing == 'true'
shell: bash
run: |
bash build_util/codesign.bash ./${{ matrix.name }}
env:
CERT_BASE64: ${{ secrets.CERT_BASE64 }}
CERT_PASSWORD: ${{ secrets.CERT_PASSWORD }}
bash build_util/codesign_sv.bash ./${{ matrix.name }}
# env:
# CERT_BASE64: ${{ secrets.CERT_BASE64 }}
# CERT_PASSWORD: ${{ secrets.CERT_PASSWORD }}
- name: Upload to Release
if: env.VERSION != 'DEBUG' && env.SKIP_UPLOADING_RELEASE_ASSET == '0'
uses: softprops/action-gh-release@v1
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/download_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
download_command: cargo run -vv -p download
download_dir: sharevox_core
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -38,7 +38,7 @@ jobs:
download_command: cargo run -vv -p download -- --cpu-arch x86
download_dir: sharevox_core
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -55,7 +55,7 @@ jobs:
download_command: cargo run -vv -p download -- -o other_output
download_dir: other_output
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -72,7 +72,7 @@ jobs:
download_command: cargo run -vv -p download -- --min
download_dir: sharevox_core
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
README.txt
check_not_exists_items: |
Expand All @@ -89,7 +89,7 @@ jobs:
download_command: cargo run -vv -p download -- --device directml
download_dir: sharevox_core
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -108,7 +108,7 @@ jobs:
download_command: cargo run -vv -p download -- --device directml --min
download_dir: sharevox_core
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
README.txt
check_not_exists_items: |
Expand All @@ -126,7 +126,7 @@ jobs:
download_command: cargo run -vv -p download -- --device cuda
download_dir: sharevox_core
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -148,7 +148,7 @@ jobs:
download_command: cargo run -vv -p download -- --device cuda --min
download_dir: sharevox_core
check_items: |
voicevox_core.dll
sharevox_core.dll
model/metas.json
README.txt
check_not_exists_items: |
Expand All @@ -170,7 +170,7 @@ jobs:
download_command: ./scripts/downloads/download.sh
download_dir: sharevox_core
check_items: |
libvoicevox_core.so
libsharevox_core.so
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -188,7 +188,7 @@ jobs:
download_command: ./scripts/downloads/download.sh --cpu-arch x64
download_dir: sharevox_core
check_items: |
libvoicevox_core.so
libsharevox_core.so
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -206,7 +206,7 @@ jobs:
download_command: ./scripts/downloads/download.sh --output other_output
download_dir: other_output
check_items: |
libvoicevox_core.so
libsharevox_core.so
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -224,7 +224,7 @@ jobs:
download_command: ./scripts/downloads/download.sh --min
download_dir: sharevox_core
check_items: |
libvoicevox_core.so
libsharevox_core.so
model/metas.json
README.txt
check_not_exists_items: |
Expand All @@ -242,7 +242,7 @@ jobs:
download_command: ./scripts/downloads/download.sh --device cuda
download_dir: sharevox_core
check_items: |
libvoicevox_core.so
libsharevox_core.so
model/metas.json
open_jtalk_dic_utf_8-1.11
README.txt
Expand All @@ -263,7 +263,7 @@ jobs:
download_command: ./scripts/downloads/download.sh --device cuda --min
download_dir: sharevox_core
check_items: |
libvoicevox_core.so
libsharevox_core.so
model/metas.json
README.txt
check_not_exists_items: |
Expand Down

0 comments on commit 62d0ed4

Please sign in to comment.