Skip to content

Commit

Permalink
chore: cleanup workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gdulafactset authored Jul 2, 2024
1 parent b605d1a commit 3e96d39
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Publish
on:
release:
types: [published]
pull_request:

jobs:
deploy:
Expand Down Expand Up @@ -45,6 +44,10 @@ jobs:
run: |
poetry build
- name: Publish
run: |
poetry publish -r publish
- name: Publish to Anaconda
shell: bash -el {0}
run: |
Expand All @@ -57,7 +60,7 @@ jobs:
count=0
max_retries=5
tag=${{ github.event.release.tag_name }}
version=2.0.0
version=${tag#v}
while [ $count -lt $max_retries ]; do
# Create meta.yaml recipe for the package pulled from PyPi
grayskull pypi fds.sdk.utils==${version}
Expand Down

0 comments on commit 3e96d39

Please sign in to comment.