Skip to content

Commit

Permalink
Run GitHub Actions publish workflow conditionally; update version to …
Browse files Browse the repository at this point in the history
…test.
  • Loading branch information
lapets committed Jun 23, 2024
1 parent 4041364 commit a09c9c7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build-publish-sign-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: build-publish-sign-release
on:
push
workflow_run:
workflows: ["lint-test-cover-docs"]
branches: [main]
types:
- completed
jobs:
build:
name: Build package.
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "blooms"
version = "2.0.0a0"
version = "2.0.0a1"
description = "Lightweight Bloom filter data structure derived from the built-in bytearray type."
license = {text = "MIT"}
authors = [
Expand Down

0 comments on commit a09c9c7

Please sign in to comment.