From 350b1fc01336ea0b2199a2cfa88389cc10130ef3 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Fri, 14 Mar 2025 05:22:22 -0500 Subject: [PATCH] CI: misc: The tags are never explicitly made on the release channel repo and yet they're there. Maybe we don't need to make it initially? --- .github/workflows/canary.yml | 11 ----------- .github/workflows/release.yml | 11 ----------- 2 files changed, 22 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 955816015..aeac1c4a7 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -38,17 +38,6 @@ jobs: echo "prev_build_version=${{ env.RYUJINX_BASE_VERSION }}.$((${{ github.run_number }} - 1))" >> $GITHUB_OUTPUT shell: bash - - name: Create tag - uses: actions/github-script@v7 - with: - script: | - github.rest.git.createRef({ - owner: "${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}", - repo: "${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}", - ref: 'refs/tags/Canary-${{ steps.version_info.outputs.build_version }}', - sha: context.sha - }) - - name: Create release uses: ncipollo/release-action@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 60752d96c..bb2a44131 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,17 +28,6 @@ jobs: echo "prev_build_version=${{ env.RYUJINX_BASE_VERSION }}.$((${{ github.run_number }} - 1))" >> $GITHUB_OUTPUT shell: bash - - name: Create tag - uses: actions/github-script@v7 - with: - script: | - github.rest.git.createRef({ - 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 - }) - - name: Create release uses: ncipollo/release-action@v1 with: