[ci] Fix runtime_prereleases (#34722)
When using the "only" or "skip" option in the workflow, we were adding the `--skipTests` param, but that isn't an actual option: https://github.com/facebook/react/blob/1de32a5e75fe96ac3c1b728a117010e11673f6ed/scripts/release/publish-commands/parse-params.js
lauren committed
Oct 3, 2025 at 14:41 UTC
4fdf7cf249ecb205d20b65b5208d113ea664cb9a
1 file changed
-2
.github/workflows/runtime_prereleases.yml
-2
@@ -82,7 +82,6 @@ jobs:
82
run: |
83
scripts/release/publish.js \
84
--ci \
85
- --skipTests \
85
--tags=${{ inputs.dist_tag }} \
86
--onlyPackages=${{ inputs.only_packages }} ${{ (inputs.dry && '') || '\'}}
87
${{ inputs.dry && '--dry' || '' }}
@@ -91,7 +90,6 @@ jobs:
90
run: |
91
scripts/release/publish.js \
92
--ci \
94
- --skipTests \
93
--tags=${{ inputs.dist_tag }} \
94
--skipPackages=${{ inputs.skip_packages }} ${{ (inputs.dry && '') || '\'}}
95
${{ inputs.dry && '--dry' || '' }}