Skip to content

Commit

Permalink
Add codecommit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnuj committed Aug 24, 2023
1 parent 2a33d67 commit 0b57989
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .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

0 comments on commit 0b57989

Please sign in to comment.