From 0358f98d863e20d2c49ef34ebd93ab3bb5029857 Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Wed, 24 Jul 2024 15:04:43 +0200 Subject: [PATCH 1/2] ci: bumping version to re trigger semantic releases to fix last failed run --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 813cea4..ec309a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" From ff7b1d550e2bfec13cf6dad50ecb120ce145ce64 Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Wed, 24 Jul 2024 16:38:46 +0200 Subject: [PATCH 2/2] chore: patching typo in conditionals for workflow dispatch bool params --- .github/workflows/cd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 6f6ca03..a4b2876 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -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: