Skip to content

Commit 7cfd959

Browse files
committed
Update Github Actions
1 parent 7e529d3 commit 7cfd959

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: build
22

33
on:
44
push:
5-
branches: '*'
5+
branches:
6+
- '*'
67
pull_request:
78
types: [opened, synchronize]
89

@@ -11,7 +12,7 @@ jobs:
1112
runs-on: ubuntu-22.04
1213
steps:
1314
- name: Checkout the project
14-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1516
with:
1617
fetch-depth: 0
1718
submodules: true
@@ -21,7 +22,7 @@ jobs:
2122
- name: Build the project
2223
run: ./gradlew assembleDebug
2324
- name: Upload APKs
24-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2526
with:
2627
retention-days: 60
2728
name: apk
@@ -51,7 +52,7 @@ jobs:
5152
git push -f origin latest_build
5253
5354
- name: Download project artifacts
54-
uses: actions/download-artifact@v2
55+
uses: actions/download-artifact@v4
5556
with:
5657
name: apk
5758
- name: Stage upload directory

0 commit comments

Comments
 (0)