Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/CI_up.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:

- name: Checkout repository
if: steps.tg_check.outputs.enabled == 'true'
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Download artifacts
if: steps.tg_check.outputs.enabled == 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: folkpatch-*
path: artifacts
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: recursive

Expand All @@ -85,7 +85,7 @@ jobs:
APK=$(find app/build/outputs/apk/debug -name "*.apk" -type f | head -1)
[ -n "$APK" ] && mv "$APK" "FolkPatch-Debug-${SHORT}.apk"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: folkpatch-debug-${{ github.sha }}
path: FolkPatch-Debug-*.apk
Expand All @@ -98,7 +98,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: recursive

Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
APK=$(find app/build/outputs/apk/release -name "*.apk" -type f | head -1)
[ -n "$APK" ] && mv "$APK" "FolkPatch-Release-${SHORT}.apk"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: folkpatch-release-${{ github.sha }}
path: FolkPatch-Release-*.apk
Expand All @@ -152,7 +152,7 @@ jobs:

- name: Download artifacts
if: steps.tg_check.outputs.enabled == 'true'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: folkpatch-*
path: artifacts
Expand Down
Loading