Browse Source

chore: update comment body

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/2435/head
Pranav C 2 years ago
parent
commit
236c88d086
  1. 26
      .github/workflows/release-pr.yml

26
.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

Loading…
Cancel
Save