Skip to content

Commit

Permalink
fix(cicd): fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mickare committed Aug 11, 2024
1 parent 96c14ad commit 7ca5afa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ env:
python_version: 3.11

jobs:
call-test:
release-test:
uses: ./.github/workflows/test.yml
release:
runs-on: ubuntu-latest
concurrency: release
needs: [call-test]
needs: [release-test]
outputs:
released: ${{ steps.release.outputs.released }}
version: ${{ steps.release.outputs.version }}
Expand All @@ -26,6 +26,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false # Required for push by semantic-release

- name: Install poetry & python-semantic-release
run: pipx install poetry~=1.8.3 python-semantic-release~=9.8.6
Expand Down

0 comments on commit 7ca5afa

Please sign in to comment.