mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-29 07:41:21 +00:00
fix: use correct artifact path
This commit is contained in:
parent
61ee03a3d6
commit
c272558f4a
1 changed files with 5 additions and 6 deletions
11
.github/workflows/e2e.yml
vendored
11
.github/workflows/e2e.yml
vendored
|
@ -62,9 +62,7 @@ jobs:
|
||||||
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
||||||
- name: Use Keyweave with No Access Policies
|
- name: Use Keyweave with No Access Policies
|
||||||
run: |
|
run: |
|
||||||
ls -la
|
./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
||||||
tree
|
|
||||||
./keyweave --vault-name ${{ env.VAULT_NAME}}
|
|
||||||
|
|
||||||
get-test:
|
get-test:
|
||||||
name: Tests with Get access
|
name: Tests with Get access
|
||||||
|
@ -79,7 +77,7 @@ jobs:
|
||||||
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
||||||
- name: Use Keyweave with Only Get Access Policy
|
- 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:
|
list-test:
|
||||||
name: Tests with List access
|
name: Tests with List access
|
||||||
|
@ -94,7 +92,8 @@ jobs:
|
||||||
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
||||||
- name: Use Keyweave with Only List Access Policy
|
- 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:
|
get-list-test:
|
||||||
name: Tests with Get and List access
|
name: Tests with Get and List access
|
||||||
needs: [build, bicep]
|
needs: [build, bicep]
|
||||||
|
@ -108,4 +107,4 @@ jobs:
|
||||||
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
||||||
- name: Use Keyweave with both Get and List Access Policies
|
- 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}}
|
||||||
|
|
Loading…
Reference in a new issue