소스 검색

JAVASCRIPT LOL

Evan Husted 1 년 전
부모
커밋
44ee4190e6
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      .github/workflows/canary.yml
  2. 2 2
      .github/workflows/release.yml

+ 2 - 2
.github/workflows/canary.yml

@@ -43,8 +43,8 @@ jobs:
         with:
           script: |
             github.rest.git.createRef({
-              owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }},
-              repo: ${{ env.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
             })

+ 2 - 2
.github/workflows/release.yml

@@ -42,8 +42,8 @@ jobs:
         with:
           script: |
             github.rest.git.createRef({
-              owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }},
-              repo: ${{ env.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
             })