mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-05-01 00:21:21 +00:00
fix: give execution permissions
This commit is contained in:
parent
c272558f4a
commit
3fd2ad2f7c
1 changed files with 10 additions and 3 deletions
13
.github/workflows/e2e.yml
vendored
13
.github/workflows/e2e.yml
vendored
|
@ -62,6 +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: |
|
||||||
|
chmod +x ./artifact/keyweave
|
||||||
./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
||||||
|
|
||||||
get-test:
|
get-test:
|
||||||
|
@ -77,7 +78,9 @@ 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: ./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
run: |
|
||||||
|
chmod +x ./artifact/keyweave
|
||||||
|
./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
||||||
|
|
||||||
list-test:
|
list-test:
|
||||||
name: Tests with List access
|
name: Tests with List access
|
||||||
|
@ -92,7 +95,9 @@ 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: ./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
run: |
|
||||||
|
chmod +x ./artifact/keyweave
|
||||||
|
./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
|
||||||
|
@ -107,4 +112,6 @@ 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: ./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
run: |
|
||||||
|
chmod +x ./artifact/keyweave
|
||||||
|
./artifact/keyweave --vault-name ${{ env.VAULT_NAME}}
|
||||||
|
|
Loading…
Reference in a new issue