From 18abf0979ee6dccf98a25364f676802a944a8705 Mon Sep 17 00:00:00 2001 From: tsukumi Date: Sat, 9 Nov 2024 04:49:10 +0900 Subject: [PATCH] =?UTF-8?q?Update:=20=E3=82=A2=E3=83=BC=E3=83=86=E3=82=A3?= =?UTF-8?q?=E3=83=95=E3=82=A1=E3=82=AF=E3=83=88=E3=81=AE=E5=91=BD=E5=90=8D?= =?UTF-8?q?=E8=A6=8F=E5=89=87=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-engine-package.yml | 10 +++++----- .github/workflows/test-engine-package.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-engine-package.yml b/.github/workflows/build-engine-package.yml index 64d5d26c..d29bd73a 100644 --- a/.github/workflows/build-engine-package.yml +++ b/.github/workflows/build-engine-package.yml @@ -55,19 +55,19 @@ jobs: # Windows x64 - os: windows-2022 architecture: "x64" - target: windows-x64 + target: Windows-x64 # macOS x64 (Intel Mac) - os: macos-13 architecture: "x64" - target: macos-x64 + target: macOS-x64 # macOS arm64 (Apple Silicon Mac) - os: macos-14 architecture: "arm64" - target: macos-arm64 + target: macOS-arm64 # Linux x64 - os: ubuntu-20.04 architecture: "x64" - target: linux-x64 + target: Linux-x64 runs-on: ${{ matrix.os }} permissions: @@ -81,7 +81,7 @@ jobs: steps: - name: Declare variables id: vars - run: echo "package_name=aivisspeech-engine-${{ matrix.target }}-${{ needs.config.outputs.version }}" >> "$GITHUB_OUTPUT" + run: echo "package_name=AivisSpeech-Engine-${{ matrix.target }}-${{ needs.config.outputs.version }}" >> "$GITHUB_OUTPUT" - name: Check out the repository uses: actions/checkout@v4 diff --git a/.github/workflows/test-engine-package.yml b/.github/workflows/test-engine-package.yml index 7639b426..fe78491b 100644 --- a/.github/workflows/test-engine-package.yml +++ b/.github/workflows/test-engine-package.yml @@ -39,13 +39,13 @@ jobs: matrix: include: - os: windows-2022 - target: windows-x64 + target: Windows-x64 - os: macos-13 - target: macos-x64 + target: macOS-x64 - os: macos-14 - target: macos-arm64 + target: macOS-arm64 - os: ubuntu-20.04 - target: linux-x64 + target: Linux-x64 runs-on: ${{ matrix.os }} @@ -54,7 +54,7 @@ jobs: id: vars run: | echo "release_url=${{ env.REPO_URL }}/releases/download/${{ env.VERSION }}" >> "$GITHUB_OUTPUT" - echo "package_name=aivisspeech-engine-${{ matrix.target }}-${{ env.VERSION }}" >> "$GITHUB_OUTPUT" + echo "package_name=AivisSpeech-Engine-${{ matrix.target }}-${{ env.VERSION }}" >> "$GITHUB_OUTPUT" - name: Check out the repository uses: actions/checkout@v4