Skip to content

Commit

Permalink
[patch] Potential fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed May 29, 2024
1 parent 2999a2e commit 060de09
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
RELEASE_HASH: ${{ steps.git_hash.outputs.HASH }}
publish:
name: Publish to PyPi
needs: [bump_version, release_hash, docker_image]
needs: [bump_version, release, release_hash, docker_image]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -167,7 +167,7 @@ jobs:
password: ${{ secrets.PYPI_API_TOKEN }}
package:
name: Build Binaries
needs: [bump_version, release_hash, docker_image]
needs: [bump_version, release, release_hash, docker_image]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -221,7 +221,9 @@ jobs:
id: archieve
- name: Install Python dependencies
run: |
python -m pip install -U pip pyinstaller wheel setuptools
python -m pip install -U pip
python -m pip install -U setuptools==69.5.1
python -m pip install -U wheel
python -m pip install -r requirements.dev.txt
- name: Run PyInstaller
env:
Expand Down Expand Up @@ -262,7 +264,7 @@ jobs:
overwrite: true
docker_image:
name: Build Docker Image
needs: [bump_version, release_hash]
needs: [bump_version, release, release_hash]
runs-on: ubuntu-latest
steps:
- id: string
Expand Down Expand Up @@ -312,7 +314,7 @@ jobs:
cache-to: type=gha,mode=max
change_logs:
name: Generate Change Logs and Release Notes
needs: [bump_version, release_hash, docker_image, publish]
needs: [bump_version, release, release_hash, docker_image, publish]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 060de09

Please sign in to comment.