Skip to content

Commit

Permalink
feat: use diff docker-compose action to work with act, upgrade env var
Browse files Browse the repository at this point in the history
Signed-off-by: David Poltorak <david.poltorak@iohk.io>
  • Loading branch information
davepoltorak committed Oct 9, 2023
1 parent 4c7b434 commit 69c03bf
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/performance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ jobs:
username: ${{ secrets.ATALA_GITHUB_ACTOR }}
password: ${{ secrets.ATALA_GITHUB_TOKEN }}

- name: Install Compose
uses: ndeloof/install-compose-action@v0.0.1
- uses: KengoTODA/actions-setup-docker-compose@v1
name: Install `docker-compose`
with:
version: v2.12.2
legacy: true # will also install in PATH as `docker-compose`
version: '2.14.2'

- name: Build local version of PRISM Agent
env:
Expand All @@ -58,8 +57,12 @@ jobs:
- name: Start services for issuer
env:
PORT: 8080
DEFAULT_WALLET_ENABLED: "true"
ADMIN_TOKEN: admin
DEFAULT_WALLET_ENABLED: true
DEFAULT_WALLET_AUTH_API_KEY: default
API_KEY_AUTO_PROVISIONING: false
API_KEY_ENABLED: true
DOCKERHOST: "host.docker.internal"
uses: isbang/compose-action@v1.4.1
with:
compose-file: "./infrastructure/shared/docker-compose.yml"
Expand All @@ -70,8 +73,12 @@ jobs:
- name: Start services for holder
env:
PORT: 8090
DEFAULT_WALLET_ENABLED: "true"
ADMIN_TOKEN: admin
DEFAULT_WALLET_ENABLED: true
DEFAULT_WALLET_AUTH_API_KEY: default
API_KEY_AUTO_PROVISIONING: false
API_KEY_ENABLED: true
DOCKERHOST: "host.docker.internal"
uses: isbang/compose-action@v1.4.1
with:
compose-file: "./infrastructure/shared/docker-compose.yml"
Expand Down

0 comments on commit 69c03bf

Please sign in to comment.