diff --git a/.github/workflows/codecommit.yml b/.github/workflows/codecommit.yml new file mode 100644 index 00000000..b0381691 --- /dev/null +++ b/.github/workflows/codecommit.yml @@ -0,0 +1,30 @@ +name: sync to codecommit + +on: + push: + tags: + - '*' + branches: + - '*' + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.CC_ACCESS_KEY }} + aws-secret-access-key: ${{ secrets.CC_SECRET_KEY }} + aws-region: us-east-1 + + - name: Sync up to CodeCommit + uses: terra-money/sync-up-to-codecommit-action@v1 + with: + repository_name: ${{ github.event.repository.name }} + aws_region: us-east-1