Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt to fix workflow #46

Merged
merged 3 commits into from
Jan 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,10 @@ jobs:
run: poetry publish

bump:
name: Bump to dev version
name: Bump to (next) dev version
runs-on: ubuntu-latest
needs: publish
if: needs.publish.result == 'success'
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Bump to (next) dev version
uses: ./.github/workflows/bump.yml
with:
rule: prerelease
uses: ./.github/workflows/bump.yml
with:
rule: prerelease
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.1a6"
version = "0.7.1a7"
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