Skip to content

Commit ea53ac1

Browse files
authored
Add artifact output setting in build workflow
1 parent 5cf1993 commit ea53ac1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,11 @@ jobs:
114114
with:
115115
path: ${{ env.APK_NAME }}-${{ env.BUILD_TYPE }}-${{ env.VERSION }}-${{ env.SHORT_SHA }}.apk
116116
archive: false
117+
118+
- name: Set artifact output
119+
id: set-output
120+
run: |
121+
echo "artifact_name=${{ env.APK_NAME }}-${{ env.BUILD_TYPE }}-${{ env.VERSION }}-${{ env.SHORT_SHA }}.apk" >> $GITHUB_OUTPUT
122+
123+
outputs:
124+
artifact-name: ${{ steps.set-output.outputs.artifact_name }}

0 commit comments

Comments
 (0)