Skip to content

Update from Private Repo #32

Update from Private Repo

Update from Private Repo #32

name: Update from Private Repo
on:
workflow_dispatch:
jobs:
update-public-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout public repository
uses: actions/checkout@v3
with:
ref: main
- name: Checkout private repository
run: |
mkdir -p ../priavte-sds-repo
git clone https://sandesh-l:${{ secrets.PAT }}@github.com/access-ci-org/ACCESS-SDS.git ../private-sds-repo
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
- name: Install rclone
run: |
curl https://rclone.org/install.sh | sudo bash
- name: Sync files
run: |
rclone sync ../private-sds-repo/ . --exclude='.git/**' --exclude='.github/**' --exclude='README.md'
rm -r ../private-sds-repo
- name: Commit and push changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m "Update from private repo"
git push origin main
env:
GITHUB_TOKEN: ${{ secrets.PAT }}