Skip to content

Commit

Permalink
configure AWS in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
itegulov committed Nov 23, 2023
1 parent 620aa81 commit de5d7c0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/multichain-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Configure AWS
run: |
# Fake AWS configuration for LocalStack
aws configure set region us-east-1
aws --profile default configure set aws_access_key_id "123"
aws --profile default configure set aws_secret_access_key "456"
- name: Compile Contract
run: cargo build -p mpc-contract --target wasm32-unknown-unknown --release

Expand Down

0 comments on commit de5d7c0

Please sign in to comment.