From 3dbba33f87508cd0152c1fbc04163e32c50cb205 Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Sun, 23 Jul 2023 05:39:05 -0500 Subject: [PATCH] Update check-git-apply.yaml --- .github/workflows/check-git-apply.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-git-apply.yaml b/.github/workflows/check-git-apply.yaml index 86fd66ee..de74508a 100644 --- a/.github/workflows/check-git-apply.yaml +++ b/.github/workflows/check-git-apply.yaml @@ -82,16 +82,15 @@ jobs: - name: Download chromium ${{ env.VERSION }} sources run: | - ./bin/SuperPatchUtils bromite $RTAG chromium-src + ./bin/SuperPatchUtils bromite $RTAG ~/chromium-src mkdir -p ~/chromium/src && cp -r ~/chromium-src ~/chromium/src - cd chromium/src + cd ~/chromium/src git init git config user.email "you@example.com" git config user.name "Your Name" git add . git commit -m $VERSION git tag -a $VERSION -m $VERSION - cd ../.. - name: Apply patches ${{ github.event.inputs.rtag }} run: |