Skip to content

Commit e8eb518

Browse files
authored
Merge pull request #550 from AztecProtocol/zkpedro/tf_workflow
adding dummy workflow
2 parents 775d8f9 + 5905d1e commit e8eb518

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/sparta.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Terraform Deploy Sparta Bot
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: read
8+
pull-requests: write
9+
10+
jobs:
11+
terraform-sparta:
12+
name: Terraform Sparta Bot
13+
runs-on: ubuntu-latest
14+
defaults:
15+
run:
16+
working-directory: tooling/sparta/terraform
17+
18+
env:
19+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
20+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
21+
TF_VAR_bot_token: ${{ secrets.BOT_TOKEN }}
22+
TF_VAR_passport_api_key: ${{ secrets.PASSPORT_API_KEY }}
23+
TF_VAR_ethereum_host: ${{ secrets.ETHEREUM_HOST }}
24+
TF_VAR_backend_api_key: ${{ secrets.BACKEND_API_KEY }}
25+
TF_VAR_aws_region: "eu-west-2"
26+
TF_VAR_environment: "production"
27+
TF_VAR_bot_client_id: "1329079356785688616"
28+
TF_VAR_guild_id: "1144692727120937080"
29+
TF_VAR_passport_verified_role_id: "1364982673604345886"
30+
TF_VAR_minimum_score: "10"
31+
TF_VAR_passport_scorer_id: "11493"
32+
TF_VAR_vite_reown_project_id: "d037e9da5c5c9b24cfcd94c509d88dce"
33+
TF_VAR_staking_asset_handler_address: "0xF739D03e98e23A7B65940848aBA8921fF3bAc4b2"
34+
TF_VAR_l1_chain_id: "11155111"
35+
TF_VAR_local_dynamo_db: "false"
36+
TF_VAR_dynamodb_local_endpoint: "http://localhost:8000"
37+
TF_VAR_log_level: "info"
38+
TF_VAR_log_pretty_print: "false"
39+
TF_VAR_api_port: "3000"
40+
41+
steps:
42+
- name: Checkout
43+
uses: actions/checkout@v4

0 commit comments

Comments
 (0)