Skip to content

Commit

Permalink
fix(hui): workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maxblan committed Jun 21, 2024
1 parent 70df6de commit b311dd2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
if: 'startsWith(github.ref, ''refs/tags/'')'
needs:
- macos
- windows
- linux
needs: [linux, windows, macos]
steps:
- uses: actions/download-artifact@v3
with:
Expand All @@ -110,11 +107,11 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: '*.whl'
publish:
publish:
name: Publish
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: [linux, windows, macos, sdist]
needs: [linux, windows, macos]
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "_socha"
version = "3.2.0"
version = "3.2.1"
edition = "2021"

[lib]
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 = "maturin"

[project]
name = "socha"
version = "3.2.0"
version = "3.2.1"
authors = [{ name = "maxblan", email = "stu222782@mail.uni-kiel.de" }]
description = "This is the package for the Software-Challenge Germany 2024. This Season the game will be 'Mississippi Queen'."
readme = "README.md"
Expand Down

0 comments on commit b311dd2

Please sign in to comment.