|
|
|
@ -121,18 +121,18 @@ jobs:
|
|
|
|
|
```bash |
|
|
|
|
mkdir -p ./${{ needs.set-tag.outputs.current_version }}/${{ needs.set-tag.outputs.target_tag }} \ |
|
|
|
|
&& cd ./${{ needs.set-tag.outputs.current_version }}/${{ needs.set-tag.outputs.target_tag }} \ |
|
|
|
|
&& 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 \ |
|
|
|
|
&& ./Noco |
|
|
|
|
&& 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 \ |
|
|
|
|
&& ./noco |
|
|
|
|
``` |
|
|
|
|
#### Linux |
|
|
|
|
|
|
|
|
|
```bash |
|
|
|
|
mkdir -p ./${{ needs.set-tag.outputs.current_version }}/${{ needs.set-tag.outputs.target_tag }} \ |
|
|
|
|
&& cd ./${{ needs.set-tag.outputs.current_version }}/${{ needs.set-tag.outputs.target_tag }} \ |
|
|
|
|
&& 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 \ |
|
|
|
|
&& ./Noco |
|
|
|
|
&& 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 \ |
|
|
|
|
&& ./noco |
|
|
|
|
``` |
|
|
|
|
#### windows |
|
|
|
|
|
|
|
|
|