From 36683d228d569c9fbf30b32b71ad07d342bc916b Mon Sep 17 00:00:00 2001 From: Gray Suitcase <41382894+PickledChair@users.noreply.github.com> Date: Mon, 28 Feb 2022 16:36:50 +0900 Subject: [PATCH] =?UTF-8?q?env=E3=81=AE=E4=BB=A3=E3=82=8F=E3=82=8A?= =?UTF-8?q?=E3=81=ABgithub=E3=82=B3=E3=83=B3=E3=83=86=E3=82=AD=E3=82=B9?= =?UTF-8?q?=E3=83=88=E3=82=92=E4=BD=BF=E3=81=86=E3=82=88=E3=81=86=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=20(#349)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit called workflow では caller workflow で定義された env コンテキストの 変数が使えないらしい cf. https://docs.github.com/ja/actions/using-workflows/reusing-workflows#limitations --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe4a0dff7..6058ae2a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -769,5 +769,5 @@ jobs: needs: [upload-to-release] uses: ./.github/workflows/release-test.yml with: - version: ${{ env.VOICEVOX_ENGINE_VERSION }} + version: ${{ github.event.release.tag_name }} repo_url: ${{ format('{0}/{1}', github.server_url, github.repository) }} # このリポジトリのURL