diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 0172e1fe6..57b2958c7 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -43,8 +43,8 @@ jobs: with: script: | github.rest.git.createRef({ - owner: context.repo.owner, - repo: context.repo.repo, + owner: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}, + repo: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_SOURCE_REPO }}, ref: 'refs/tags/Canary-${{ steps.version_info.outputs.build_version }}', sha: context.sha }) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9086a7ff6..e0ae71171 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,8 +42,8 @@ jobs: with: script: | github.rest.git.createRef({ - owner: context.repo.owner, - repo: context.repo.repo, + owner: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}, + repo: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}, ref: 'refs/tags/${{ steps.version_info.outputs.build_version }}', sha: context.sha })