We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aeb43e7 + e186f45 commit 3aa8b90Copy full SHA for 3aa8b90
.github/workflows/deploy_to_staging.yml
@@ -11,13 +11,14 @@ jobs:
11
end_to_end_tests:
12
name: Perform end-to-end tests
13
runs-on: ubuntu-latest
14
+ environment: staging
15
16
steps:
17
- uses: actions/checkout@v3
18
- name: Run tests
19
env:
- GH_PRIVATE_KEY: ${{ secrets.GH_STAGING_PRIVATE_KEY }}
20
- DB_URL: ${{secrets.STAGING_DB_URL}}
+ GH_PRIVATE_KEY: ${{ secrets.GH_PRIVATE_KEY }}
21
+ DB_URL: ${{secrets.DB_URL}}
22
run: cargo test -- --nocapture
23
24
deploy_to_staging:
@@ -66,7 +67,7 @@ jobs:
66
67
},
68
"environment": {
69
"GH_PRIVATE_KEY": "${{secrets.GH_PRIVATE_KEY}}",
- "DB_URL": "${{secrets.DB_URL}}"
70
+ "DB_URL": "${{secrets.DB_URL}}",
71
"GITHUB_APP_ID": "${{vars.GH_APP_ID}}",
72
"FILPLUS_ENV": "prod",
73
"RUST_LOG": "debug",
0 commit comments