Skip to content

Commit

Permalink
Update v0.6.0_install-and-publish-packages.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
cobycloud committed Dec 27, 2024
1 parent c5a9d51 commit 2316605
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/v0.6.0_install-and-publish-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,17 @@ jobs:
source $UNIQUE_VENV_PATH/bin/activate
pip install toml
- name: Generate poetry.lock
run: |
source $UNIQUE_VENV_PATH/bin/activate
python scripts/manage_packages.py poetry-lock --directory pkgs
- name: Install Dependencies
run: |
source $UNIQUE_VENV_PATH/bin/activate
python scripts/manage_packages.py poetry-install --directory pkgs --all-extras --dev
- name: Update pyproject.toml Files
run: |
for package in pkgs/*; do
Expand All @@ -74,17 +85,7 @@ jobs:
cd -
fi
done
- name: Generate poetry.lock
run: |
source $UNIQUE_VENV_PATH/bin/activate
python scripts/manage_packages.py poetry-lock --directory pkgs
- name: Install Dependencies
run: |
source $UNIQUE_VENV_PATH/bin/activate
python scripts/manage_packages.py poetry-install --directory pkgs --all-extras --dev
- name: Publish from Dependencies
run: |
source $UNIQUE_VENV_PATH/bin/activate
Expand Down

0 comments on commit 2316605

Please sign in to comment.