We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf33960 commit 6f086efCopy full SHA for 6f086ef
1 file changed
.github/workflows/deploy-integration-tests.yml
@@ -31,12 +31,12 @@ jobs:
31
32
- name: Configure Beam
33
env:
34
- BEAM_TOKEN: ${{ secrets.BEAM_INTEGRATION_TEST_TOKEN }}
+ BETA9_CONFIG: ${{ secrets.BETA9_CONFIG }}
35
run: |
36
poetry export --without-hashes --format=requirements.txt > requirements.txt
37
pip install -r requirements.txt
38
- pip install beta9
39
- { echo ""; echo ""; echo $BEAM_TOKEN } | beta9 config create default --gateway-host gateway.stage.beam.cloud --gateway-port 443
+ mkdir -p ~/.beta9/config.ini
+ echo $BETA9_CONFIG >> ~/.beta9/config.ini
40
41
- name: Deploy
42
run: cd tests && beta9 deploy app.py:run_tests -n integration-tests
0 commit comments