Skip to content

Commit

Permalink
do it yourself
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen committed May 31, 2024
1 parent f2a4b6f commit e260728
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/config_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,17 @@ jobs:
- name: Git checkout
uses: actions/checkout@v3

- name: File Sync
uses: netlify/file-sync-action@v1
- name: Checkout Config-Repository
uses: actions/checkout@v4
with:
files: '{"betadots/.github#sync/release.yml": ".github/release.yml"}'
token: ${{ secrets.GITHUB_TOKEN }}
repository: "${{ github.repository_owner }}/.github"
path: upstream

- name: Install rsync
run: |
sudo apt-get update
sudo apt-get install -y rsync
- name: Sync .github directory
run: |
rsync -avz upstream/sync/ .github/

0 comments on commit e260728

Please sign in to comment.