ci: remove unstable suffix from experimental and add stable suffix to tagged builds

This commit is contained in:
Elara 2024-04-15 12:45:10 -07:00
parent 92a03355c3
commit 2f4a9f9801
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,7 @@ steps:
build:
image: python
commands:
- sed -i 's/name = "music-kraken"/name = "music-kraken-stable"/' pyproject.toml
- python -m pip install -r requirements-dev.txt
- python3 -m build
environment:
@ -15,7 +16,6 @@ steps:
build-dev:
image: python
commands:
- sed -i 's/name = "music-kraken"/name = "music-kraken-unstable"/' pyproject.toml
- python -m pip install -r requirements-dev.txt
- python3 -m build
when: