Skip to content

Commit

Permalink
Merge pull request #139 from Perfexionists/gh-fix2
Browse files Browse the repository at this point in the history
Fix several issues in GH
  • Loading branch information
tfiedor authored Nov 6, 2023
2 parents 430aa70 + 9b4624f commit 7a97653
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
release:
if: ${{ github.event.pull_request.merged == true }} && ${{ contains(github.event.head_commit.message, 'Release') }}
if: ${{ github.event.pull_request.merged == true && contains(github.event.head_commit.message, 'Release') }}
runs-on: ubuntu-latest
steps:
- name: Checkout latest version
Expand Down Expand Up @@ -99,4 +99,4 @@ jobs:
python3 -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TESTPYPI_SECRET_TOKEN }}
TWINE_PASSWORD: ${{ secrets.PYPI_SECRET_TOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "perun-toolsuite"
description = "Perun: Lightweight Performance Version System"
version = "0.21.1"
version = "0.21.2"
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down

0 comments on commit 7a97653

Please sign in to comment.