From ef0d20f208b6afe0f74b6ecf20509f99b715f9d9 Mon Sep 17 00:00:00 2001 From: DaisukeDaisuke <17798680+DaisukeDaisuke@users.noreply.github.com> Date: Sun, 21 May 2023 12:57:51 +0900 Subject: [PATCH] php 8.1 and php 8,2 --- .github/workflows/blank.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 27bd333..4cbfdf8 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -21,18 +21,18 @@ jobs: fail-fast: true matrix: include: - - option: "-g" - name: "-8.0" - branch: "php/8.0" - option: "-g" name: "-8.1" branch: "php/8.1" - - option: "-g -P 5" - name: "-8.0-PM5" - branch: "php/8.0" + - option: "-g" + name: "-8.2" + branch: "php/8.2" - option: "-g -P 5" name: "-8.1-PM5" branch: "php/8.1" + - option: "-g -P 5" + name: "-8.2-PM5" + branch: "php/8.2" # Please note that if editing the matrix, the release workflow must also be edited. steps: - uses: actions/checkout@v2 @@ -80,27 +80,27 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event.inputs.createRelease == 'yes'}} steps: - - name: Download a Build Artifact(bin-8.0.zip) - uses: actions/download-artifact@v2 - with: - name: bin-8.0.zip - - name: Download a Build Artifact(bin-8.1.zip) uses: actions/download-artifact@v2 with: name: bin-8.1.zip - - name: Download a Build Artifact(bin-8.0-PM5.zip) + + - name: Download a Build Artifact(bin-8.2.zip) uses: actions/download-artifact@v2 with: - name: bin-8.0-PM5.zip + name: bin-8.2.zip - name: Download a Build Artifact(bin-8.1-PM5.zip) uses: actions/download-artifact@v2 with: name: bin-8.1-PM5.zip + - name: Download a Build Artifact(bin-8.2-PM5.zip) + uses: actions/download-artifact@v2 + with: + name: bin-8.2-PM5.zip - name: create checksums.sha256 run: | - sha256sum "bin-8.0.zip" "bin-8.1.zip" "bin-8.0-PM5.zip" "bin-8.1-PM5.zip" > checksums.sha256 + sha256sum "bin-8.1.zip" "bin-8.2.zip" "bin-8.1-PM5.zip" "bin-8.2-PM5.zip" > checksums.sha256 cat checksums.sha256 sha256sum checksums.sha256 @@ -115,10 +115,10 @@ jobs: tag_name: ${{ github.event.inputs.tagname }} name: Release ${{ github.event.inputs.tagname }} files: | - bin-8.0.zip bin-8.1.zip - bin-8.0-PM5.zip + bin-8.2.zip bin-8.1-PM5.zip + bin-8.2-PM5.zip checksums.sha256 body: "The php version for this release is ${{ github.event.inputs.tagname }}.