Skip to content

Commit eec5d4e

Browse files
committed
Get azure properties from secrets store
1 parent 5e5cceb commit eec5d4e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ jobs:
9393
AWS_SECRET_KEY: ${{secrets.AWS_SECRET_KEY}}
9494
GCP_STORAGE_BUCKET: ${{secrets.GCP_STORAGE_BUCKET}}
9595
GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }}
96-
AZURE_STORAGE_ENDPOINT: ${{AZURE_STORAGE_ENDPOINT}}
97-
AZURE_STORAGE_CONNECTION_STRING: ${{AZURE_STORAGE_CONNECTION_STRING}}
96+
AZURE_STORAGE_ENDPOINT: ${{ secrest.AZURE_STORAGE_ENDPOINT }}
97+
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
9898

9999
- name: Publish JARs
100100
run: |

.github/workflows/prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ jobs:
104104
AWS_SECRET_KEY: ${{secrets.AWS_SECRET_KEY}}
105105
GCP_STORAGE_BUCKET: ${{secrets.GCP_STORAGE_BUCKET}}
106106
GOOGLE_APPLICATION_CREDENTIALS: ${{env.GOOGLE_APPLICATION_CREDENTIALS}}
107-
AZURE_STORAGE_ENDPOINT: ${{AZURE_STORAGE_ENDPOINT}}
108-
AZURE_STORAGE_CONNECTION_STRING: ${{AZURE_STORAGE_CONNECTION_STRING}}
107+
AZURE_STORAGE_ENDPOINT: ${{ secrest.AZURE_STORAGE_ENDPOINT }}
108+
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
109109

110110
- name: Validate examples
111111
run: |

0 commit comments

Comments
 (0)