Browse Source

fixed bash syntax

Rodja Trappe 4 years ago
parent
commit
8d4b6c1fab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/python-publish.yml

+ 1 - 1
.github/workflows/python-publish.yml

@@ -29,7 +29,7 @@ jobs:
         run: poetry publish --build
       - name: verify
         shell: bash
-        run: for i in {1..100}; do; python -m pip install 'nicegui==${{ steps.get_version.outputs.VERSION }}' && break || sleep 2; done
+        run: for i in {1..100}; do python -m pip install 'nicegui==${{ steps.get_version.outputs.VERSION }}' && break || sleep 2; done
 
   docker:
     runs-on: ubuntu-latest