From 37de274007ccec8d6e854f749a43bb66f6b4f3ce Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Mon, 7 Oct 2024 17:05:37 +0200 Subject: [PATCH] Post comment --- .github/workflows/build_artifact_comment.yml | 1 + .github/workflows/windows-qt6.yml | 19 ++++++++++++------- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_artifact_comment.yml b/.github/workflows/build_artifact_comment.yml index dbec0aefee9f..bdd94c00054c 100644 --- a/.github/workflows/build_artifact_comment.yml +++ b/.github/workflows/build_artifact_comment.yml @@ -4,6 +4,7 @@ on: workflow_run: workflows: - 🪟 MingW64 Windows 64bit Build + - 🪟 Windows Qt6 types: - completed diff --git a/.github/workflows/windows-qt6.yml b/.github/workflows/windows-qt6.yml index 68432d391f04..af07f5ef7a94 100644 --- a/.github/workflows/windows-qt6.yml +++ b/.github/workflows/windows-qt6.yml @@ -117,16 +117,21 @@ jobs: path: | C:/src/**/*.log - - name: Save PR number to zips - run: | - echo ${{ github.event.number }} | tee pr_number - powershell Compress-Archive -update pr_number *-win64.zip - echo ${{ github.event.pull_request.head.sha }} | tee git_commit - powershell Compress-Archive -update git_commit *-win64.zip - - name: 📤 Upload bundle uses: actions/upload-artifact@v4 + id: artifact-win64-qt6 with: name: qgis-windows-qt6 path: | build/*-win64.zip + + + - name: Schedule download comment + uses: ./.github/actions/post_sticky_comment + with: + marker: mingw64-qt6 + body: | + ### 🪟 Windows Qt6 builds + Download [Windows Qt6builds of this PR for testing](${{ steps.artifact-win64-qt6.outputs.artifact-url }}). + *(Built from commit ${{ github.event.pull_request.head.sha }})* + pr: ${{ github.event.number }}