Skip to content

Commit

Permalink
update release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
n-at committed May 6, 2021
1 parent 6eb2f49 commit 33b53de
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 715 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./release/linux_amd64.tar.gz"
asset_path: "./release/gifr_linux_amd64.tar.gz"
asset_name: "gifr_linux_amd64.tar.gz"
asset_content_type: "application/gzip"
- name: Upload linux-arm64
Expand All @@ -52,7 +52,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./release/linux_arm64.tar.gz"
asset_path: "./release/gifr_linux_arm64.tar.gz"
asset_name: "gifr_linux_arm64.tar.gz"
asset_content_type: "application/gzip"
- name: Upload mac-amd64
Expand All @@ -62,7 +62,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./release/macos_amd64.tar.gz"
asset_path: "./release/gifr_macos_amd64.tar.gz"
asset_name: "gifr_macos_amd64.tar.gz"
asset_content_type: "application/gzip"
- name: Upload windows-amd64
Expand All @@ -72,6 +72,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./release/windows_amd64.tar.gz"
asset_name: "gifr_windows_amd64.tar.gz"
asset_content_type: "application/gzip"
asset_path: "./release/gifr_windows_amd64.zip"
asset_name: "gifr_windows_amd64.zip"
asset_content_type: "application/zip"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Everything will be built in one `target/gifr.jar` file.
Running
-------

`ffmpeg` and `ffprobe` are required in PATH.
`ffmpeg` and `ffprobe` are required in PATH (included in release builds).

Run with `java`:

Expand All @@ -46,7 +46,7 @@ Or just (since it is an executable jar):

./gifr.jar

Go to http://localhost:8080
Go to http://localhost:5000

Configuration
-------------
Expand Down
Loading

0 comments on commit 33b53de

Please sign in to comment.