fix artifact path

OmarHatem committed Nov 29, 2022 at 14:23 UTC fb2e7306ad5949497e286f829297796d3f7deb5c
1 file changed +3 -2
.github/workflows/pr_test_build.yml
+3 -2
@@ -116,12 +116,13 @@ jobs:
116
117 - name: Rename apk
118 run: |
119 - mv pubspec_base.yaml $GITHUB_HEAD_REF.apk
119 + mkdir test-apk
120 + mv pubspec_base.yaml test-apk/$GITHUB_HEAD_REF.apk
121 ls
122
123 - name: Upload Artifact
124 uses: actions/upload-artifact@v3
125 with:
126 name: test-apks-artifacts
126 - path: "\${{GITHUB_HEAD_REF}}.apk"
127 + path: test-apk/*
128