@@ -207,6 +207,7 @@ jobs:
207207
208208 - name : Download build artifacts
209209 uses : actions/download-artifact@v4
210+
210211 - name : Upload to S3 (tag + latest)
211212 shell : bash
212213 run : |
@@ -240,14 +241,12 @@ jobs:
240241 fi
241242
242243 upload_if_exists "lantern-installer-dmg/${INSTALLER_NAME}.dmg" "s3://${BUCKET}/${prefix}/${tag}/${INSTALLER_NAME}.dmg" || true
243- # upload_if_exists "lantern-installer-exe/${INSTALLER_NAME}.exe" "s3://${BUCKET}/${prefix}/${tag}/${INSTALLER_NAME}.exe" || true
244244 upload_if_exists "lantern-installer-apk/${INSTALLER_NAME}.apk" "s3://${BUCKET}/${prefix}/${tag}/${INSTALLER_NAME}.apk" || true
245245 upload_if_exists "lantern-installer-deb/${INSTALLER_NAME}.deb" "s3://${BUCKET}/${prefix}/${tag}/${INSTALLER_NAME}.deb" || true
246246 upload_if_exists "lantern-installer-rpm/${INSTALLER_NAME}.rpm" "s3://${BUCKET}/${prefix}/${tag}/${INSTALLER_NAME}.rpm" || true
247247
248248 # Latest aliases
249249 upload_if_exists "lantern-installer-dmg/${INSTALLER_NAME}.dmg" "s3://${BUCKET}/${prefix}/latest/${INSTALLER_NAME}.dmg" || true
250- # upload_if_exists "lantern-installer-exe/${INSTALLER_NAME}.exe" "s3://${BUCKET}/${prefix}/latest/${INSTALLER_NAME}.exe" || true
251250 upload_if_exists "lantern-installer-apk/${INSTALLER_NAME}.apk" "s3://${BUCKET}/${prefix}/latest/${INSTALLER_NAME}.apk" || true
252251 upload_if_exists "lantern-installer-deb/${INSTALLER_NAME}.deb" "s3://${BUCKET}/${prefix}/latest/${INSTALLER_NAME}.deb" || true
253252 upload_if_exists "lantern-installer-rpm/${INSTALLER_NAME}.rpm" "s3://${BUCKET}/${prefix}/latest/${INSTALLER_NAME}.rpm" || true
@@ -267,15 +266,13 @@ jobs:
267266 echo "## Release links (${BUILD_TYPE})"
268267 echo ""
269268 echo "- macOS: https://${BUCKET}.s3.amazonaws.com/${prefix}/${tag}/${INSTALLER_NAME}.dmg"
270- # echo "- Windows: https://${BUCKET}.s3.amazonaws.com/${prefix}/${tag}/${INSTALLER_NAME}.exe"
271269 echo "- Android: https://${BUCKET}.s3.amazonaws.com/${prefix}/${tag}/${INSTALLER_NAME}.apk"
272270 echo "- Linux (.deb): https://${BUCKET}.s3.amazonaws.com/${prefix}/${tag}/${INSTALLER_NAME}.deb"
273271 echo "- Linux (.rpm): https://${BUCKET}.s3.amazonaws.com/${prefix}/${tag}/${INSTALLER_NAME}.rpm"
274272 echo "- iOS (.ipa): https://${BUCKET}.s3.amazonaws.com/${prefix}/${tag}/${INSTALLER_NAME}.ipa"
275273 echo ""
276274 echo "**Latest aliases**"
277275 echo "- macOS: https://${BUCKET}.s3.amazonaws.com/${prefix}/latest/${INSTALLER_NAME}.dmg"
278- # echo "- Windows: https://${BUCKET}.s3.amazonaws.com/${prefix}/latest/${INSTALLER_NAME}.exe"
279276 echo "- Android: https://${BUCKET}.s3.amazonaws.com/${prefix}/latest/${INSTALLER_NAME}.apk"
280277 echo "- Linux (.deb): https://${BUCKET}.s3.amazonaws.com/${prefix}/latest/${INSTALLER_NAME}.deb"
281278 echo "- iOS (.ipa): https://${BUCKET}.s3.amazonaws.com/${prefix}/latest/${INSTALLER_NAME}.ipa"
@@ -292,7 +289,6 @@ jobs:
292289 generate_release_notes : false
293290 files : |
294291 lantern-installer-dmg/${{ env.INSTALLER_NAME }}.dmg
295- # lantern-installer-exe/${{ env.INSTALLER_NAME }}.exe
296292 lantern-installer-apk/${{ env.INSTALLER_NAME }}.apk
297293 lantern-installer-deb/${{ env.INSTALLER_NAME }}.deb
298294 lantern-installer-rpm/${{ env.INSTALLER_NAME }}.rpm
@@ -372,4 +368,4 @@ jobs:
372368 app-path : ${{ needs.set-release-metadata.outputs.installer_name }}.ipa
373369 issuer-id : ${{ secrets.APPSTORE_ISSUER_ID }}
374370 api-key-id : ${{ secrets.APPSTORE_API_KEY_ID }}
375- api-private-key : ${{ secrets.APPSTORE_API_PRIVATE_KEY }}
371+ api-private-key : ${{ secrets.APPSTORE_API_PRIVATE_KEY }}
0 commit comments