Skip to content

Commit

Permalink
Update sync-private-repo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nsswifter authored Nov 27, 2024
1 parent e80d38f commit a117e75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sync-private-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
# Copy all files from the public repo into the private repo
- name: Copy Public Repo Files to Private Repo
run: |
# Go back to the root of the public repo (to ensure you're copying the right files)
cd ${{ github.workspace }}
cp -r * ./private-repo/ # Copy files from the public repo to the private repo
# Go back to the root of the public repo (where the files are located)
cd ${{ github.workspace }} # Ensure we're in the root of the public repository
cp -r ./* ./private-repo/ # Copy all files from the public repo to the private repo
# Commit and push the changes to the private repo
- name: Commit and Push Changes to Private Repo
Expand Down

0 comments on commit a117e75

Please sign in to comment.