-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13129 from staszekscp/ci/further-workflow-fixes
- Loading branch information
Showing
5 changed files
with
68 additions
and
53 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
.github/actions/composite/configureAwsCredentials/configureAwsCredentials.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Configure AWS Credentials' | ||
description: 'Configures AWS credentials for the workflow' | ||
|
||
inputs: | ||
AWS_ACCESS_KEY_ID: | ||
description: 'Access Key to AWS' | ||
required: true | ||
AWS_SECRET_ACCESS_KEY: | ||
description: 'Secret Access Key to AWS' | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Configure AWS Credentials | ||
# Version: 1.5.5 | ||
uses: aws-actions/configure-aws-credentials@e97d7fbc8e0e5af69631c13daa0f4b5a8d88165b | ||
with: | ||
aws-access-key-id: ${{ inputs.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ inputs.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters