From 1e1bcb4a5b3e3cd333872917cfc70a796c7cf1f1 Mon Sep 17 00:00:00 2001 From: GreemDev Date: Tue, 23 Dec 2025 00:02:02 -0600 Subject: [PATCH] storing commit string in github output causes weird CI failures so let's just not bother, it didn't show anything more than the UI already did anyways --- .github/workflows/canary.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index e8c6a3395..510873add 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -63,7 +63,6 @@ jobs: echo "build_version=$(gli get-next-version -c Canary -R)" >> $GITHUB_OUTPUT echo "prev_build_version=$(gli get-current-version -c Canary -R)" >> $GITHUB_OUTPUT echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT - echo "commit_message=$(git log -1 --pretty=%B)" >> $GITHUB_OUTPUT shell: bash - name: Configure for release @@ -229,12 +228,11 @@ jobs: echo "build_version=$(gli get-next-version -c Canary -R)" >> $GITHUB_OUTPUT echo "prev_build_version=$(gli get-current-version -c Canary -R)" >> $GITHUB_OUTPUT echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT - echo "commit_message=$(git log -1 --pretty=%B)" >> $GITHUB_OUTPUT shell: bash - name: Create tag run: | - gli create-tag -T ${{ secrets.GITLAB_TOKEN }} -P ryubing/ryujinx -n Canary-${{ steps.version_info.outputs.build_version }} -r ${{ steps.version_info.outputs.git_short_hash }} -c "${{ steps.version_info.outputs.commit_message }}" + gli create-tag -T ${{ secrets.GITLAB_TOKEN }} -P ryubing/ryujinx -n Canary-${{ steps.version_info.outputs.build_version }} -r ${{ steps.version_info.outputs.git_short_hash }} - name: Create release run: |