Skip to content

Commit

Permalink
Update: アーティファクトの命名規則を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukumijima committed Nov 8, 2024
1 parent 64e355b commit 18abf09
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-engine-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -81,7 +81,7 @@ jobs:
steps:
- name: <Setup> 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: <Setup> Check out the repository
uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-engine-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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: <Setup> Check out the repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 18abf09

Please sign in to comment.