Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Mar 2, 2024
1 parent 7049115 commit 33fde09
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ jobs:
python-version: 3.8
poetry-version: 1.2.2

- name: Change to distribution name in toml file
run: |
cd specsanalyzer
sed -i 's/name = "specsanalyzer"/name = "specsanalyzer"/' pyproject.toml
- name: bump pre-release version
id: version
working-directory: specsanalzer
Expand All @@ -53,13 +48,13 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: dist
path: specsanalzer/dist
path: dist

- name: Upload pyproject.toml
uses: actions/upload-artifact@v3
with:
name: pyproject
path: specsanalzer/pyproject.toml
path: pyproject.toml

release:
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -77,11 +72,6 @@ jobs:
python-version: 3.8
poetry-version: 1.2.2

- name: Change to distribution name in toml file
run: |
cd specsanalyzer
sed -i 's/name = "specsanalyzer"/name = "specsanalyzer"/' pyproject.toml
- name: Bump release version and build
id: version
working-directory: specsanalyzer
Expand All @@ -95,13 +85,13 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: dist
path: specsanalyzer/dist
path: dist

- name: Upload pyproject.toml
uses: actions/upload-artifact@v3
with:
name: pyproject
path: specsanalyzer/pyproject.toml
path: pyproject.toml

publish:
needs: [prerelease, release]
Expand Down

0 comments on commit 33fde09

Please sign in to comment.