Skip to content

Commit

Permalink
Merge pull request #111 from bruin-data/ci-fix-release/BRU-1440
Browse files Browse the repository at this point in the history
ci: release: fix venv not activating when releasing
  • Loading branch information
turtleDev authored Feb 6, 2025
2 parents a9be4ef + 12f3771 commit b950c97
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ jobs:
- name: install uv
run: pip install uv
- name: setup venv
run: uv venv && . .venv/bin/activate
run: uv venv
- name: install dependencies
run: uv pip install -r requirements-dev.txt
- name: build
run: make build
- name: release
run: make upload-release
run: |
source .venv/bin/activate
make upload-release
docker-release:
needs: tests
Expand Down

0 comments on commit b950c97

Please sign in to comment.