Skip to content

Commit

Permalink
Merge pull request #44 from teutoburg/releaseflow
Browse files Browse the repository at this point in the history
Attempt to fix workflow
  • Loading branch information
teutoburg authored Dec 23, 2023
2 parents 292f714 + 5320018 commit 442074f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
name: Publish package to PyPI
runs-on: ubuntu-latest
needs: build
if: needs.build.result == "success"
if: needs.build.result == 'success'
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
name: Bump to dev version
runs-on: ubuntu-latest
needs: publish
if: needs.publish.result == "success"
if: needs.publish.result == 'success'
steps:
- name: Checkout code
uses: ./.github/workflows/bump.yml
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "prepipy"
version = "0.7.1a4"
version = "0.7.1a5"
description = "Provides the ability to stretch and combine astronomical images from multiple bands into (RGB) colour images."
authors = ["Fabian Haberhauer <[email protected]>"]
maintainers = ["teutoburg <[email protected]>"]
Expand Down

0 comments on commit 442074f

Please sign in to comment.