Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@ name: Release
on:
workflow_dispatch:
inputs:
version:
description: 'Git tag for the release. For example, v1.2.3'
required: true
run_id:
description: 'ID of the CI workflow run that created the release assets'
type: number
required: true

concurrency:
group: ${{ github.workflow }}-${{ inputs.version }}
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true

permissions: {}
Expand Down Expand Up @@ -52,18 +49,22 @@ jobs:
with:
name: php-matrix_linux_arm64
path: out/linux_arm64
run-id: ${{ inputs.run_id }}
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: php-matrix_linux_amd64
path: out/linux_amd64
run-id: ${{ inputs.run_id }}
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: php-matrix_darwin_arm64
path: out/darwin_arm64
run-id: ${{ inputs.run_id }}
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: php-matrix_darwin_amd64
path: out/darwin_amd64
run-id: ${{ inputs.run_id }}

- uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
id: app-token
Expand Down
Loading