diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index acbd824..d8ea05a 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -62,9 +62,7 @@ jobs: subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Use Keyweave with No Access Policies run: | - ls -la - tree - ./keyweave --vault-name ${{ env.VAULT_NAME}} + ./artifact/keyweave --vault-name ${{ env.VAULT_NAME}} get-test: name: Tests with Get access @@ -79,7 +77,7 @@ jobs: tenant-id: ${{ secrets.AZURE_TENANT_ID }} subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Use Keyweave with Only Get Access Policy - run: ./keyweave --vault-name ${{ env.VAULT_NAME}} + run: ./artifact/keyweave --vault-name ${{ env.VAULT_NAME}} list-test: name: Tests with List access @@ -94,7 +92,8 @@ jobs: tenant-id: ${{ secrets.AZURE_TENANT_ID }} subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Use Keyweave with Only List Access Policy - run: ./keyweave --vault-name ${{ env.VAULT_NAME}} + run: ./artifact/keyweave --vault-name ${{ env.VAULT_NAME}} + get-list-test: name: Tests with Get and List access needs: [build, bicep] @@ -108,4 +107,4 @@ jobs: tenant-id: ${{ secrets.AZURE_TENANT_ID }} subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} - name: Use Keyweave with both Get and List Access Policies - run: ./keyweave --vault-name ${{ env.VAULT_NAME}} + run: ./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}