@@ -43,33 +43,21 @@ jobs:
43
43
run : ./gradlew :capture-plugin:publish -PVERSION_NAME="${{ inputs.version }}" --info
44
44
env :
45
45
SKIP_PROTO_GEN : 1
46
- - name : Compress Timber artifacts
47
- run : |
48
- readonly dir=$(pwd)
49
- (cd capture-timber/build/repos/releases/io/bitdrift/capture-timber/${{ inputs.version }} && zip -r "$dir/capture-timber.zip" ./*)
50
- - name : Compress Apollo artifacts
51
- run : |
52
- readonly dir=$(pwd)
53
- (cd capture-apollo3/build/repos/releases/io/bitdrift/capture-apollo3/${{ inputs.version }} && zip -r "$dir/capture-apollo3.zip" ./*)
54
- - name : Compress Android Plugin artifacts
55
- run : |
56
- readonly dir=$(pwd)
57
- (cd capture-plugin/build/repos/releases/io/bitdrift/capture-plugin/${{ inputs.version }} && zip -r "$dir/capture-plugin.zip" ./*)
58
46
- name : Upload Timber artifacts
59
47
uses : actions/upload-artifact@v4
60
48
with :
61
- name : capture-timber.zip
62
- path : platform/jvm/ capture-timber.zip
49
+ name : capture-timber-${{ inputs.version }}.android .zip
50
+ path : capture-timber/build/repos/releases/io/bitdrift/ capture-timber/${{ inputs.version }}
63
51
if-no-files-found : error
64
52
- name : Upload Apollo artifacts
65
53
uses : actions/upload-artifact@v4
66
54
with :
67
- name : capture-apollo3.zip
68
- path : platform/jvm/ capture-apollo3.zip
55
+ name : capture-apollo3-${{ inputs.version }}.android .zip
56
+ path : capture-apollo3/build/repos/releases/io/bitdrift/ capture-apollo3/${{ inputs.version }}
69
57
if-no-files-found : error
70
58
- name : Upload Gradle Plugin artifacts
71
59
uses : actions/upload-artifact@v4
72
60
with :
73
- name : capture-plugin.zip
74
- path : platform/jvm/ capture-plugin.zip
61
+ name : capture-plugin-${{ inputs.version }}.android .zip
62
+ path : capture-plugin/build/repos/releases/io/bitdrift/ capture-plugin/${{ inputs.version }}
75
63
if-no-files-found : error
0 commit comments