Skip to content

Commit

Permalink
test deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianBurke committed Nov 6, 2024
1 parent 16f07e9 commit 6092347
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/demo-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,11 @@ jobs:
git remote set-url origin https://${{ secrets.GH_PAT }}@github.com/${{ github.repository_owner }}/GCWeb.git
# Step 7: Force Push to gh-pages
- name: Force Push to gh-pages
- name: Prepare for Force Push to gh-pages
run: |
cd ${{ github.workspace }}/gh-pages
# Force push changes to gh-pages
# Repack the repository to avoid any potential issues with large or corrupt objects
git gc --prune=now
git repack -a -d --depth=250 --window=250
# Retry force push changes to gh-pages
git push origin gh-pages --force

0 comments on commit 6092347

Please sign in to comment.