Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/deploy-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,17 +176,15 @@ jobs:
LAST_MSG=$(git log -1 --pretty=%s)
if echo "$LAST_MSG" | grep -q "snapshot ${SNAPSHOT_DATE}"; then
git commit --amend --no-edit
git push origin history --force-with-lease
git push origin HEAD:history --force-with-lease
else
git commit -m "chore(add-ons): snapshot ${SNAPSHOT_DATE}"
git push origin history
git push origin HEAD:history
fi
else
echo "No changes to commit"
fi

git worktree remove /tmp/history-worktree

# Build job
build:
runs-on: ubuntu-latest
Expand Down
Loading