ci: Don't upload images to group, uploading manager is enough because we can use manager to install directly

This commit is contained in:
weishu 2024-03-19 13:31:02 +08:00
parent 65b5ce2a50
commit eb25644a0e
3 changed files with 3 additions and 2 deletions

View File

@ -51,7 +51,7 @@ build_from_image() {
echo "[+] Images to upload" echo "[+] Images to upload"
find . -type f -name "*.gz" find . -type f -name "*.gz"
find . -type f -name "*.gz" -exec python3 "$GITHUB_WORKSPACE"/KernelSU/scripts/ksubot.py {} + # find . -type f -name "*.gz" -exec python3 "$GITHUB_WORKSPACE"/KernelSU/scripts/ksubot.py {} +
} }
for dir in Image*; do for dir in Image*; do

View File

@ -30,7 +30,7 @@ build_from_image() {
echo '[+] Images to upload' echo '[+] Images to upload'
find . -type f -name "*.gz" find . -type f -name "*.gz"
find . -type f -name "*.gz" -exec python3 "$GITHUB_WORKSPACE"/KernelSU/scripts/ksubot.py {} + # find . -type f -name "*.gz" -exec python3 "$GITHUB_WORKSPACE"/KernelSU/scripts/ksubot.py {} +
} }
for dir in Image*; do for dir in Image*; do

View File

@ -119,6 +119,7 @@ jobs:
- name: Bot session cache - name: Bot session cache
id: bot_session_cache id: bot_session_cache
uses: actions/cache@v3 uses: actions/cache@v3
if: false
with: with:
path: scripts/ksubot.session path: scripts/ksubot.session
key: ${{ runner.os }}-bot-session key: ${{ runner.os }}-bot-session