Skip to content

Commit

Permalink
php 8.1 and php 8,2
Browse files Browse the repository at this point in the history
  • Loading branch information
DaisukeDaisuke authored May 21, 2023
1 parent 64e4d07 commit ef0d20f
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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 }}.
Expand Down

0 comments on commit ef0d20f

Please sign in to comment.