Skip to content

Commit

Permalink
update to fix cd
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Sep 13, 2024
1 parent 057f688 commit 9329c6e
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
with:
python-version: '3.10' # Set the Python version you need

- name: Install make
run: |
sudo apt-get update
sudo apt-get install -y make
# - name: Install make
# run: |
# sudo apt-get update
# sudo apt-get install -y make

- name: Install Poetry
run: |
Expand All @@ -44,10 +44,11 @@ jobs:
# make -C documentation clean
# make -C documentation html

- name: Create new github tags
run: |
git tag -m "Version v${{ env.VERSION }}" "v${{ env.VERSION }}"
git push --tags
# - name: Create new github tags
# run: |
# git tag -m "Version v${{ env.VERSION }}" "v${{ env.VERSION }}"
# git push --tags

- name: Publish new version on PyPI
run: |
poetry build
Expand Down

0 comments on commit 9329c6e

Please sign in to comment.