Skip to content
Merged
Show file tree
Hide file tree
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
15 changes: 1 addition & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,9 @@ jobs:
bash -n scripts/verify-public-release-assets.sh
bash -n scripts/verify-reproducible-build.sh
pwsh -NoProfile -Command '$null = [scriptblock]::Create((Get-Content -Raw scripts/install.ps1))'
- name: Verify release recovery source contracts
env:
CONFORMANCE_BASE_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }}
- name: Verify release contracts
run: |
arguments=()
if [ -n "$CONFORMANCE_BASE_REF" ]; then
arguments+=(--previous-ref "$CONFORMANCE_BASE_REF")
fi
python scripts/ci/release_recovery_consumer_conformance.py \
--contract scripts/ci/release-recovery-consumer-contract.json \
--adapter scripts/ci/release-recovery-consumer-adapter.json \
"${arguments[@]}"
python scripts/ci/test-native-prerequisites.py
python scripts/ci/test-component-release-recovery.py ConsumerContractIdentityRegressionTest
python scripts/ci/test-cli-publication-run.py
python scripts/ci/test-publish-planned-tag.py
node --test scripts/ci/test-release-workflow-metadata.js
node --test scripts/ci/test-cli-release-channel.js
node --test scripts/ci/test-cli-upgrade-result.js
Expand Down
432 changes: 0 additions & 432 deletions .github/workflows/release-plan-recovery.yml

This file was deleted.

8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ run-name: >-
github.event_name == 'schedule' ||
inputs.operation == 'phpmicro-cache-warm') &&
'Warm phpmicro cache' ||
format('Release {0} for {1}', inputs.tag || github.ref_name, inputs.release_plan || 'direct')
format('Release {0}', inputs.tag || github.ref_name)
}}

on:
Expand All @@ -33,12 +33,8 @@ on:
description: 'Release tag required for release (e.g. 0.0.1-test or v0.0.1-test)'
required: false
release_commit:
description: 'Exact source commit declared by the immutable release plan (required for release)'
description: 'Exact source commit to release'
required: false
release_plan:
description: 'Immutable release-plan tag initiating this recovery run'
required: false
default: 'direct'
permissions:
contents: read

Expand Down
Loading