Skip to content

Commit 0048203

Browse files
committed
Fixed secrets
1 parent 799e1d2 commit 0048203

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ jobs:
5353
<servers>
5454
<server>
5555
<id>octopus-sales-public-snapshot</id>
56-
<username>${{ inputs.aws_access_key }}</username>
57-
<password>${{ inputs.aws_secret_access_key }}</password>
56+
<username>${{ secrets.AWS_ACCESS_KEY_ID }}</username>
57+
<password>${{ secrets.AWS_SECRET_ACCESS_KEY }}</password>
5858
<configuration>
5959
<region>ap-southeast-2</region>
6060
<publicRepository>true</publicRepository>
6161
</configuration>
6262
</server>
6363
<server>
6464
<id>octopus-sales-public-release</id>
65-
<username>${{ inputs.aws_access_key }}</username>
66-
<password>${{ inputs.aws_secret_access_key }}</password>
65+
<username>${{ secrets.AWS_ACCESS_KEY_ID }}</username>
66+
<password>${{ secrets.AWS_SECRET_ACCESS_KEY }}</password>
6767
<configuration>
6868
<region>ap-southeast-2</region>
6969
<publicRepository>true</publicRepository>

0 commit comments

Comments
 (0)