From 2a35e1b5af806a6f744047d81accc2f649842b4a Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Wed, 28 Jan 2026 09:33:46 +0100 Subject: [PATCH 1/2] Fix workflow name for creating release artifacts --- .github/workflows/create-release-artifacts.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-release-artifacts.yml b/.github/workflows/create-release-artifacts.yml index 96b4283da..a30f88340 100644 --- a/.github/workflows/create-release-artifacts.yml +++ b/.github/workflows/create-release-artifacts.yml @@ -1,4 +1,5 @@ -name: create-release-artifacts.yml +name: Create Release Artifacts +run-name: Create Release artifacts for ${{ github.ref_name }} on: push: tags: From cfbba77f7b9de57ec98179b30cc76b491be82bf2 Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Wed, 28 Jan 2026 09:44:12 +0100 Subject: [PATCH 2/2] Remove ref parameter from php-windows-builder --- .github/actions/windows/build/action.yml | 4 ---- .github/workflows/build-windows-packages.yml | 1 - 2 files changed, 5 deletions(-) diff --git a/.github/actions/windows/build/action.yml b/.github/actions/windows/build/action.yml index 85cc96593..ac131c2aa 100644 --- a/.github/actions/windows/build/action.yml +++ b/.github/actions/windows/build/action.yml @@ -1,9 +1,6 @@ name: "Build DLL files for Windows" description: "Prepares the PHP build environment for the MongoDB driver" inputs: - ref: - description: Git reference to build - required: false php-version: description: "PHP version to build for" required: true @@ -23,7 +20,6 @@ runs: - name: Build extension uses: php/php-windows-builder/extension@1.6.0 with: - extension-ref: ${{ inputs.ref }} php-version: ${{ inputs.php-version }} arch: ${{ inputs.arch }} ts: ${{ inputs.ts }} diff --git a/.github/workflows/build-windows-packages.yml b/.github/workflows/build-windows-packages.yml index d48538c3d..4bfb02853 100644 --- a/.github/workflows/build-windows-packages.yml +++ b/.github/workflows/build-windows-packages.yml @@ -48,7 +48,6 @@ jobs: id: build-driver uses: ./.github/actions/windows/build with: - ref: ${{ inputs.ref }} php-version: ${{ matrix.php-version }} arch: ${{ matrix.arch }} ts: ${{ matrix.ts }}