Skip to content

Commit

Permalink
tweaks to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
robalb committed Oct 17, 2024
1 parent 8ee6e06 commit 5cce4c2
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/deploy_github_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,17 @@ jobs:
run: |
cp -r ./svelte_blinkenweb/dist/* ./docs/
# Step 7: Commit and push the changes
- name: Commit and push changes
# Step 7: Commit the changes
- name: Commit changes
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git add .
git add --all
git commit -m "Update GitHub Pages with latest build from master"
git push origin github_pages_test --force
# Step 8: Push the changes
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
with:
branch: github_pages_test

0 comments on commit 5cce4c2

Please sign in to comment.