Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
tags-ignore:
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.

# Or it can be triggered manually.
workflow_dispatch:

jobs:
release_metadata:
if: "!startsWith(github.event.head_commit.message, 'docs') && !startsWith(github.event.head_commit.message, 'ci') && startsWith(github.repository, 'apify/')"
Expand Down Expand Up @@ -65,7 +68,7 @@ jobs:
steps:
- name: Prepare distribution
uses: apify/workflows/prepare-pypi-distribution@main
with:
with:
package_name: apify
is_prerelease: "yes"
version_number: ${{ needs.release_metadata.outputs.version_number }}
Expand Down
Loading