Skip to content

Commit aec2c73

Browse files
committed
Pipe in token
1 parent 175f7ef commit aec2c73

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/deploy-integration-tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)