10000 ci: Add workflow dispatch for pre-release workflow (#328) · Mantisus/apify-client-python@8242f85 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8242f85

Browse files
authored
ci: Add workflow dispatch for pre-release workflow (apify#328)
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 f1d1cbb commit 8242f85

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pre_release.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
tags-ignore:
99
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
1010

11+
# Or it can be triggered manually.
12+
workflow_dispatch:
13+
1114
jobs:
1215
release_metadata:
1316
if: "!startsWith(github.event.head_commit.message, 'docs') && !startsWith(github.event.head_commit.message, 'ci') && startsWith(github.repository, 'apify/')"
@@ -69,7 +72,7 @@ jobs:
6972
steps:
7073
- name: Prepare distribution
7174
uses: apify/workflows/prepare-pypi-distribution@main
72-
with:
75+
with:
7376
package_name: apify-client
7477
is_prerelease: "yes"
7578
version_number: ${{ needs.release_metadata.outputs.version_number }}

0 commit comments

Comments
 (0)
0