From 80852ed368db8e2e95ec3291b1e42b235159fd52 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Thu, 4 Dec 2025 01:44:30 +0300 Subject: [PATCH] fix --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db72e827..ade219f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,10 @@ jobs: runs-on: ubuntu-latest needs: [build_macos] steps: + - name: Checkout Release Branch + uses: actions/checkout@v4 + with: + ref: ${{ env.BRANCH_NAME }} - name: Download Build Artifact uses: actions/download-artifact@v4 with: @@ -40,10 +44,6 @@ jobs: # zip -r ./release/voxelcore-${RELEASE_VERSION}_win64.zip ./artifacts/Windows-Build/* ls -la ./release tree ./release - - name: Checkout Release Branch - uses: actions/checkout@v4 - with: - ref: ${{ env.BRANCH_NAME }} - name: Create Tag run: | git config --local user.email "action@github.com" @@ -59,6 +59,7 @@ jobs: with: tag_name: v${{ env.RELEASE_VERSION }} draft: true - files: ./release/* + files: | + ./release/* generate_release_notes: true