Reference env variables from git actions env

This commit is contained in:
aboyko
2023-06-07 12:20:39 -04:00
parent 26d44f9fe3
commit af69d06121
2 changed files with 4 additions and 4 deletions

View File

@@ -138,8 +138,8 @@
<profile>
<id>gitactions</id>
<properties>
<dist.accessKey>${secrets.TOOLS_S3_ACCESS_KEY}</dist.accessKey>
<dist.secretKey>${secrets.TOOLS_S3_SECRET_KEY}</dist.secretKey>
<dist.accessKey>${env.secrets.TOOLS_S3_ACCESS_KEY}</dist.accessKey>
<dist.secretKey>${env.secrets.TOOLS_S3_SECRET_KEY}</dist.secretKey>
<dist.pathpostfix>trials</dist.pathpostfix>
<dist.path>${dist.type}/${dist.key}/${dist.project}/${dist.pathpostfix}</dist.path>

View File

@@ -129,8 +129,8 @@
<profile>
<id>gitactions</id>
<properties>
<dist.accessKey>${secrets.TOOLS_S3_ACCESS_KEY}</dist.accessKey>
<dist.secretKey>${secrets.TOOLS_S3_SECRET_KEY}</dist.secretKey>
<dist.accessKey>${env.secrets.TOOLS_S3_ACCESS_KEY}</dist.accessKey>
<dist.secretKey>${env.secrets.TOOLS_S3_SECRET_KEY}</dist.secretKey>
<dist.pathpostfix>trials</dist.pathpostfix>
<dist.path>${dist.type}/${dist.key}/${dist.project}/${dist.pathpostfix}</dist.path>