Created
November 21, 2022 12:54
-
-
Save Voronenko/e85664f356495e74fe0970f4384f2be3 to your computer and use it in GitHub Desktop.
github actions stub nov
This file contains hidden or 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
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1-node16 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: | |
- name: install helm | |
uses: azure/setup-helm@v3 | |
# with: | |
# version: '<version>' # default is latest stable | |
id: install_helm | |
- name: yq - portable yaml processor | |
uses: mikefarah/[email protected] | |
- name: kubectl install | |
uses: azure/setup-kubectl@v3 | |
# with: | |
# version: '<version>' # default is latest stable | |
id: install_kubectl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment