in absence of APE, added default approver #62
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
name: Upload | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- tlspk-helper.README.txt | |
- v1/cfn-tlspk-cluster-bootstrapper.yaml | |
- v1/cfn-tlspk-clusters-bootstrapper.yaml | |
- v1/tlspk-helper.sh | |
- v2/cfn-tlspk-cluster-bootstrapper.yaml | |
- v2/tlspk-helper.sh | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3.2.0 | |
- name: Set up AWS CLI | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
- name: Upload Files | |
run: | | |
aws s3 cp tlspk-helper.README.txt s3://venafi-ecosystem/tlspk/ | |
aws s3 cp v1/cfn-tlspk-cluster-bootstrapper.yaml s3://venafi-ecosystem/tlspk/v1/ | |
aws s3 cp v1/cfn-tlspk-clusters-bootstrapper.yaml s3://venafi-ecosystem/tlspk/v1/ | |
aws s3 cp v1/tlspk-helper.sh s3://venafi-ecosystem/tlspk/v1/ | |
aws s3 cp v2/cfn-tlspk-cluster-bootstrapper.yaml s3://venafi-ecosystem/tlspk/v2/ | |
aws s3 cp v2/tlspk-helper.sh s3://venafi-ecosystem/tlspk/v2/ |