Skip to content

Commit e3e2074

Browse files
Sleep after publishing
1 parent b632c8a commit e3e2074

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/workflow.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,14 @@ jobs:
9898

9999
- name: Try publishing to PyPi
100100
run: flit publish
101+
id: flit-publish
101102
continue-on-error: true
102103
env:
103104
FLIT_USERNAME: ${{ secrets.PYPI_USERNAME }}
104105
FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
105-
106+
- name: Sleep to let published packages percolate...
107+
run: sleep 60
108+
if: steps.flit-publish.outcome == 'success'
106109
- name: Push images
107110
working-directory: ./k8
108111
run: make push-images 2>&1 | tee /tmp/my-logs/push-images

0 commit comments

Comments
 (0)