ci: do not dry run by default in release.yml (#16358)

This commit is contained in:
Alexey Shekhirin
2025-05-20 11:38:22 +02:00
committed by GitHub
parent 4bae5aa3bf
commit 5e7024f79f

View File

@@ -12,7 +12,7 @@ on:
dry_run:
description: "Enable dry run mode (builds artifacts but skips uploads and release creation)"
type: boolean
default: true
default: false
env:
REPO_NAME: ${{ github.repository_owner }}/reth
@@ -24,6 +24,13 @@ env:
DOCKER_OP_IMAGE_NAME_URL: ghcr.io/${{ github.repository_owner }}/op-reth
jobs:
dry-run:
name: check dry run
runs-on: ubuntu-latest
steps:
- run: |
echo "Dry run: ${{ github.event.inputs.dry_run }}"
extract-version:
name: extract version
runs-on: ubuntu-latest