Browse Source

fixed version check

Rodja Trappe 2 years ago
parent
commit
0547dfaec9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/publish.yml

+ 1 - 1
.github/workflows/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==${{ env.VERSION }}' && break || sleep 2; done
 
   docker:
     needs: pypi