Skip to content

Commit 9524398

Browse files
authored
ci: Add workflow dispatch for pre-release workflow (#892)
To be able to solve issues like this - https://github.com/apify/apify-sdk-python/actions/runs/12671344582/job/35314370843, by manual re-run.
1 parent f03a4e1 commit 9524398

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pre_release.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ on:
88
tags-ignore:
99
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
1010

11-
concurrency:
11+
# Or it can be triggered manually.
12+
workflow_dispatch:
13+
14+
concurrency:
1215
group: release
1316
cancel-in-progress: false
1417

@@ -72,7 +75,7 @@ jobs:
7275
steps:
7376
- name: Prepare distribution
7477
uses: apify/workflows/prepare-pypi-distribution@main
75-
with:
78+
with:
7679
package_name: crawlee
7780
is_prerelease: "yes"
7881
version_number: ${{ needs.release_metadata.outputs.version_number }}

0 commit comments

Comments
 (0)