-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* asset path for upload release asset does not support wildcards * correct ending for linux asset * correct MIME type for linux asset
- Loading branch information
Armin Schrenk
committed
Jun 18, 2020
1 parent
3756c5d
commit 8c0b0e8
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,16 +81,16 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.APP_NAME }}-SNAPSHOT-Linux/helloJavaFX-* | ||
asset_name: ${{ env.APP_NAME }}-${{ env.BUILD_VERSION }}-linux.zip | ||
asset_content_type: application/zip | ||
asset_path: ${{ env.APP_NAME }}-SNAPSHOT-Linux/helloJavaFX-${{ env.BUILD_VERSION }}-linux.tar.gz | ||
asset_name: ${{ env.APP_NAME }}-${{ env.BUILD_VERSION }}-linux.tar.gz | ||
asset_content_type: application/gzip | ||
- name: Upload mac kit to GitHub Releases | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.APP_NAME }}-SNAPSHOT-macOS/helloJavaFX-* | ||
asset_path: ${{ env.APP_NAME }}-SNAPSHOT-macOS/helloJavaFX-${{ env.BUILD_VERSION }}-mac.zip | ||
asset_name: ${{ env.APP_NAME }}-${{ env.BUILD_VERSION }}-mac.zip | ||
asset_content_type: application/zip | ||
- name: Upload windows kit to GitHub Releases | ||
|
@@ -99,6 +99,6 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.APP_NAME }}-SNAPSHOT-Windows/helloJavaFX-* | ||
asset_path: ${{ env.APP_NAME }}-SNAPSHOT-Windows/helloJavaFX-${{ env.BUILD_VERSION }}-win.zip | ||
asset_name: ${{ env.APP_NAME }}-${{ env.BUILD_VERSION }}-win.zip | ||
asset_content_type: application/zip |