File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -158,20 +158,24 @@ jobs:
158
158
${ANDROID_HOME}/build-tools/34.0.0/apksigner sign --ks apksign.keystore --ks-pass env:SIGNING_STORE_PASSWORD "./current.apk"
159
159
mv "current.apk" "pipebender_v${version}"
160
160
fi
161
-
161
+
162
+ echo ${version} > version.num
162
163
ls -la
163
164
164
165
- name : Generate checksum
165
166
run : |
166
167
cd "${{ github.workspace }}/output/"
167
168
find . -name '*.apk' -type f -exec sha256sum {} \; > checksums.txt
168
- echo "::notice::$(cat ./checksums.txt)"
169
+ echo "::notice::$(echo $(cat ./checksums.txt))"
170
+ ls -la
169
171
170
172
171
173
- name : Create release and upload
172
174
run : |
173
175
gh auth login --with-token <<<"${{ secrets.GITHUB_TOKEN }}"
174
176
cd "${{ github.workspace }}/output/"
177
+ version=$(cat version.num)
178
+ echo $version
175
179
gh release create "v${version}" --title "${{ inputs.title }}" --notes-file "./changelog.md" --prerelease="true" --repo MaintainTeam/PipeBenderTests
176
180
gh release upload "v${version}" $(echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt) --repo MaintainTeam/PipeBenderTests
177
181
You can’t perform that action at this time.
0 commit comments