Skip to content

Commit

Permalink
ci: bumping version to re trigger semantic releases to fix last faile…
Browse files Browse the repository at this point in the history
…d run (#5)

* ci: bumping version to re trigger semantic releases to fix last failed run

* chore: patching typo in conditionals for workflow dispatch bool params
  • Loading branch information
aorumbayev authored Jul 25, 2024
1 parent 46f7493 commit 873515c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
contents: write
packages: read
env:
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.dry_run && '--noop' || '') || '' }}
PRERELEASE: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.prerelease && 'true' || '') || 'true' }}
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'true' && '--noop' || '' }}
PRERELEASE: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.prerelease || 'true' }}
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "algorand-python-testing"
version = "0.2.2-beta.1"
version = "0.2.2-beta.2"
description = 'Algorand Python testing library'
readme = "README.md"
requires-python = ">=3.12"
Expand Down

0 comments on commit 873515c

Please sign in to comment.