From b9909cee351eea67af1ea611626267e197c978c8 Mon Sep 17 00:00:00 2001 From: "MC51 (Michael)" Date: Sat, 8 May 2021 01:25:35 +0200 Subject: [PATCH] add os to release names --- .github/workflows/build.yml | 22 +++++++++++----------- README.md | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b3839a..61e1f71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,17 +44,17 @@ jobs: CMD_BUILD: go mod tidy && go build --tags gtk -o build/clipster_mac.app/Contents/MacOS/clipster_mac-bin && cd build/ && zip -r9 clipster_mac clipster_mac.app/ OUT_FILE_NAME: clipster_mac.zip ASSET_MIME: application/zip - # - os: ubuntu-latest - # TARGET: linux - # CMD_RESOLVE_DEPS: sudo apt-get update && sudo apt-get -y install libgtk-3-dev - # CMD_BUILD: go mod tidy && go build -o build/clipster - # OUT_FILE_NAME: clipster - # ASSET_MIME: application/octet-stream - # - os: windows-latest - # TARGET: windows - # CMD_BUILD: go mod tidy && go build -o build/clipster.exe - # OUT_FILE_NAME: clipster.exe - # ASSET_MIME: application/vnd.microsoft.portable-executable + - os: ubuntu-latest + TARGET: linux + CMD_RESOLVE_DEPS: sudo apt-get update && sudo apt-get -y install libgtk-3-dev + CMD_BUILD: go mod tidy && go build -o build/clipster_linux + OUT_FILE_NAME: clipster_linux + ASSET_MIME: application/octet-stream + - os: windows-latest + TARGET: windows + CMD_BUILD: go mod tidy && go build -o build/clipster_win.exe + OUT_FILE_NAME: clipster_win.exe + ASSET_MIME: application/vnd.microsoft.portable-executable steps: - name: Install Go uses: actions/setup-go@v2 diff --git a/README.md b/README.md index b9b8631..a72c83c 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ There is an alternative [Clipster-Desktop](https://github.com/mc51/Clipster-Desk ### Linux -Download [`clipster`](https://github.com/mc51/Clipster-Desktop/releases/latest/download/clipster) from the latest Linux release and start it. To have Clipster auto start, add it to `Application Autostart`. +Download [`clipster_linux`](https://github.com/mc51/Clipster-Desktop/releases/latest/download/clipster_linux) from the latest Linux release and start it. To have Clipster auto start, add it to `Application Autostart`. Clipster depends on gtk-3.0. To install it (Ubuntu/Debian): `sudo apt-get install libgtk-3-0` ### Windows (coming soon...) -Download [`clipster.exe`](https://github.com/mc51/Clipster-Desktop/releases/latest/download/clipster.exe) from the latest Windows release and start it. To have Clipster auto start for the current user, open the startup folder by opening Explorer and typing `shell:startup`. Copy `clipster.exe` there. +Download [`clipster_win.exe`](https://github.com/mc51/Clipster-Desktop/releases/latest/download/clipster_win.exe) from the latest Windows release and start it. To have Clipster auto start for the current user, open the startup folder by opening Explorer and typing `shell:startup`. Copy `clipster_win.exe` there. ### MacOS (coming soon...)