Browse Source

chore(action): shorten url

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

6
.github/workflows/release-pr.yml

@ -119,21 +119,21 @@ jobs:
#### MacOS #### MacOS
```bash ```bash
curl https://github.com/nocodb/nocodb-timely/releases/download/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}/Noco-macos-arm64 -o Noco -L \ curl http://dl.nocodb.com/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}/Noco-macos-arm64 -o Noco -L \
&& chmod +x Noco \ && chmod +x Noco \
&& ./Noco && ./Noco
``` ```
#### Linux #### Linux
```bash ```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 -o Noco -L \ curl http://dl.nocodb.com/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}/Noco-linux-x64 -o Noco -L \
&& chmod +x Noco \ && chmod +x Noco \
&& ./Noco && ./Noco
``` ```
#### windows #### windows
```bash ```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 iwp http://dl.nocodb.com/${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}/Noco-win-arm64.exe
.\Noco-win-arm64.exe .\Noco-win-arm64.exe
``` ```

Loading…
Cancel
Save