Skip to content

Commit

Permalink
envの代わりにgithubコンテキストを使うよう変更 (#349)
Browse files Browse the repository at this point in the history
called workflow では caller workflow で定義された env コンテキストの
変数が使えないらしい
cf. https://docs.github.com/ja/actions/using-workflows/reusing-workflows#limitations
  • Loading branch information
PickledChair authored Feb 28, 2022
1 parent ead77be commit 36683d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 36683d2

Please sign in to comment.