Update check-git-apply.yaml

This commit is contained in:
uazo
2023-07-23 05:39:05 -05:00
committed by GitHub
parent 37883aeea1
commit 3dbba33f87
+2 -3
View File
@@ -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: |