From 18f2aba5506182c7cd25329d5e8115cdb6b1ae16 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 27 Nov 2024 14:59:37 +0000 Subject: [PATCH] Change release titles to prioritize more important information --- .github/workflows/main-pm-matrix.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main-pm-matrix.yml b/.github/workflows/main-pm-matrix.yml index 593512e5..bee6d753 100644 --- a/.github/workflows/main-pm-matrix.yml +++ b/.github/workflows/main-pm-matrix.yml @@ -205,6 +205,7 @@ jobs: uses: actions/download-artifact@v4 with: path: ${{ github.workspace }} + pattern: "PHP-${{ inputs.php-version-base }}-*-PM${{ inputs.pm-version-major }}" - name: Generate release notes run: | @@ -237,15 +238,14 @@ jobs: if: ${{ inputs.special-release != 'none' }} with: artifacts: | - ${{ github.workspace }}/PHP-${{ inputs.php-version-base }}-Linux-PM${{ inputs.pm-version-major }}/*.tar.gz - ${{ github.workspace }}/PHP-${{ inputs.php-version-base }}-MacOS-*-PM${{ inputs.pm-version-major }}/*.tar.gz - ${{ github.workspace }}/PHP-${{ inputs.php-version-base }}-Windows-PM${{ inputs.pm-version-major }}/*.zip - name: PM ${{ inputs.pm-version-major }}.x - Recommended (${{ steps.date.outputs.DATE }}) + ${{ github.workspace }}/PHP-*-Linux-PM*/*.tar.gz + ${{ github.workspace }}/PHP-*-MacOS-*-PM*/*.tar.gz + ${{ github.workspace }}/PHP-*-Windows-PM*/*.zip + name: PM ${{ inputs.pm-version-major }}.x (${{ steps.date.outputs.DATE }}) - Recommended tag: pm${{ inputs.pm-version-major }}-latest commit: ${{ github.sha }} allowUpdates: true bodyFile: ${{ github.workspace }}/special-changelog.md - removeArtifacts: true makeLatest: ${{ inputs.special-release == 'default-latest' }} prerelease: ${{ inputs.pm-preview == 'true' }} @@ -253,15 +253,14 @@ jobs: uses: ncipollo/release-action@v1.14.0 with: artifacts: | - ${{ github.workspace }}/PHP-${{ inputs.php-version-base }}-Linux-PM${{ inputs.pm-version-major }}/*.tar.gz - ${{ github.workspace }}/PHP-${{ inputs.php-version-base }}-MacOS-*-PM${{ inputs.pm-version-major }}/*.tar.gz - ${{ github.workspace }}/PHP-${{ inputs.php-version-base }}-Windows-PM${{ inputs.pm-version-major }}/*.zip - name: PM ${{ inputs.pm-version-major }}.x - All PHP Versions (${{ steps.date.outputs.DATE }}) + ${{ github.workspace }}/PHP-*-Linux-PM*/*.tar.gz + ${{ github.workspace }}/PHP-*-MacOS-*-PM*/*.tar.gz + ${{ github.workspace }}/PHP-*-Windows-PM*/*.zip + name: PM ${{ inputs.pm-version-major }}.x (${{ steps.date.outputs.DATE }}) - All PHP Versions tag: pm${{ inputs.pm-version-major }}-all-latest commit: ${{ github.sha }} allowUpdates: true bodyFile: ${{ github.workspace }}/changelog.md - removeArtifacts: true makeLatest: false prerelease: ${{ inputs.pm-preview == 'true' }}