From 236c88d0860620105c22279ca21855f1bd1fb20a Mon Sep 17 00:00:00 2001 From: Pranav C Date: Mon, 20 Jun 2022 16:18:44 +0530 Subject: [PATCH] chore: update comment body Signed-off-by: Pranav C --- .github/workflows/release-pr.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index 37f76b93eb..403501c4e7 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -114,7 +114,31 @@ jobs: - uses: peter-evans/commit-comment@v2 with: body: | - The PR changes have been deployed as executables. Pleae visit following link to download executables : https://github.com/nocodb/nocodb-timely/releases/tag/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }} + ### Run Executables + + #### MacOS + + ```bash + curl https://github.com/nocodb/nocodb-timely/releases/download/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}/Noco-linux-arm64 \ + && chmod +x Noco-linux-arm64 \ + && ./Noco-linux-arm64 + ``` + #### Linux + + ```bash + curl https://github.com/nocodb/nocodb-timely/releases/download/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}/Noco-linux-x64 \ + && chmod +x Noco-linux-x64 \ + && ./Noco-linux-x64 + ``` + #### windows + + ```bash + iwp https://github.com/nocodb/nocodb-timely/releases/download/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}/Noco-win-arm64.exe + .\Noco-win-arm64.exe + ``` + + For executables visit [here](https://github.com/nocodb/nocodb-timely/releases/tag/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}) + # if-merged: # if: github.event.pull_request.merged == true