From 9408452f933fad387fa91f86d0a4d1f302ce96f8 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 27 Dec 2024 16:10:03 -0600 Subject: [PATCH] ok that one was my fault --- .github/workflows/canary.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 57b2958c7..a68f4cb97 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -43,8 +43,8 @@ jobs: with: script: | github.rest.git.createRef({ - owner: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}, - repo: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_SOURCE_REPO }}, + owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}, + repo: ${{ env.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 e0ae71171..bfc04e228 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,8 +42,8 @@ jobs: with: script: | github.rest.git.createRef({ - owner: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}, - repo: ${{ RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}, + owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}, + repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}, ref: 'refs/tags/${{ steps.version_info.outputs.build_version }}', sha: context.sha })