Skip to content

Commit 409ea03

Browse files
authored
Merge pull request #91 from mngoe/develop-to-merge
fix git workflows
2 parents 297b5a0 + 1cd3122 commit 409ea03

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
run: |
2626
gradle --version
2727
28+
- name: show gradlew permission
29+
run: |
30+
chmod +x gradlew
31+
2832
- name: build
2933
run: |
3034
./gradlew assembleDebug --stacktrace
@@ -33,7 +37,7 @@ jobs:
3337
run: |
3438
gradle --version
3539
36-
- uses: actions/upload-artifact@v2
40+
- uses: actions/upload-artifact@v4
3741
with:
3842
name: openimis-claims-apk-${{github.run_number}}-${{github.sha}}
3943
path: ./claimManagement/build/outputs/**/*.apk
@@ -46,7 +50,7 @@ jobs:
4650
run: |
4751
gradle --version
4852
49-
- uses: actions/upload-artifact@v2
53+
- uses: actions/upload-artifact@v4
5054
with:
5155
name: openimis-claims-aab-${{github.run_number}}-${{github.sha}}
5256
path: ./claimManagement/build/outputs/**/*.aab

.github/workflows/manual.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ jobs:
4545
echo url ${{ github.event.inputs.api_base_url }}
4646
echo app name ${{ github.event.inputs.app_name }}
4747
48+
- name: show gradlew permission
49+
run: |
50+
chmod +x gradlew
51+
4852
- name: build
4953
run: |
5054
./gradlew assembleCliDebug --stacktrace
@@ -60,7 +64,7 @@ jobs:
6064
run: |
6165
gradle --version
6266
63-
- uses: actions/upload-artifact@v2
67+
- uses: actions/upload-artifact@v4
6468
with:
6569
name: openimis-claims-apk-${{github.run_number}}-${{github.sha}}
6670
path: ./claimManagement/build/outputs/**/*.apk

0 commit comments

Comments
 (0)