File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,16 @@ jobs:
2525 virtualenvs-in-project : true
2626 installer-parallel : true
2727
28- - name : Install Dependencies
29- run : poetry install --no-interaction --no-root
30- if : steps.cache.outputs.cache-hit != 'true'
31-
28+ # - name: Install Dependencies
29+ # run: poetry install --no-interaction --no-root
30+ # if: steps.cache.outputs.cache-hit != 'true'
31+
3232 - name : Configure Beam
3333 env :
3434 BEAM_TOKEN : ${{ secrets.BEAM_INTEGRATION_TEST_TOKEN }}
3535 run : |
36- pip install beam-client
36+ poetry export --without-hashes --format=requirements.txt > requirements.txt
37+ pip install -r requirements.txt
3738 echo $BEAM_TOKEN | beam config create default --gateway-host gateway.stage.beam.cloud --gateway-port 443
3839
3940 - name : Deploy
You can’t perform that action at this time.
0 commit comments