File tree 6 files changed +30
-10
lines changed
6 files changed +30
-10
lines changed Original file line number Diff line number Diff line change 1
1
* text =auto
2
2
3
3
* .sh text eol =lf
4
- ** test_config_file_crlf.json text eol =crlf # for testing
4
+
5
+ # for testing
6
+ ** test_config_file_crlf.json text eol =crlf
Original file line number Diff line number Diff line change @@ -303,3 +303,23 @@ jobs:
303
303
airbyte-local-cli-nodejs/out/pkg/release_macos-arm64/airbyte-local-macos-arm64.zip
304
304
airbyte-local-cli-nodejs/out/pkg/release_win-x64/airbyte-local-win-x64.zip
305
305
tag_name : ${{ needs.tag.outputs.createdTag }}
306
+
307
+ - name : Recreate latest tag
308
+ run : |
309
+ git push --delete origin latest || true
310
+ git tag -f latest
311
+ git push origin latest --force
312
+
313
+ # Release to latest every time
314
+ - name : Release Latest
315
+ uses : softprops/action-gh-release@v2
316
+ with :
317
+ files : |
318
+ airbyte-local-cli-nodejs/out/pkg/release_linux-x64/airbyte-local-linux-x64.zip
319
+ airbyte-local-cli-nodejs/out/pkg/release_linux-arm64/airbyte-local-linux-arm64.zip
320
+ airbyte-local-cli-nodejs/out/pkg/release_macos-x64/airbyte-local-macos-x64.zip
321
+ airbyte-local-cli-nodejs/out/pkg/release_macos-arm64/airbyte-local-macos-arm64.zip
322
+ airbyte-local-cli-nodejs/out/pkg/release_win-x64/airbyte-local-win-x64.zip
323
+ tag_name : latest
324
+ prerelease : false
325
+ draft : false
Original file line number Diff line number Diff line change @@ -40,22 +40,20 @@ A command line tool for running Airbyte sources & destinations **locally** with
40
40
41
41
### 🚀 Step 1. Install
42
42
43
- [ All releases] ( https://github.com/faros-ai/airbyte-local-cli/releases )
44
-
45
43
#### MacOS (Arch: Apple Silicon)
46
44
47
45
Here is the steps of downloading the CLI on MacOS. Linux should have very similar steps.
48
46
49
47
``` sh
50
- wget -O airbyte-local.zip https://github.com/faros-ai/airbyte-local-cli/releases/download/v0.0.5 /airbyte-local-macos-arm64.zip
48
+ wget -O airbyte-local.zip https://github.com/faros-ai/airbyte-local-cli/releases/download/latest /airbyte-local-macos-arm64.zip
51
49
unzip -o airbyte-local.zip
52
50
53
51
./airbyte-local
54
52
```
55
53
56
54
#### Linux
57
55
``` sh
58
- wget -O airbyte-local.zip https://github.com/faros-ai/airbyte-local-cli/releases/download/v0.0.5 /airbyte-local-linux-x64.zip
56
+ wget -O airbyte-local.zip https://github.com/faros-ai/airbyte-local-cli/releases/download/latest /airbyte-local-linux-x64.zip
59
57
unzip -o airbyte-local.zip
60
58
61
59
./airbyte-local
@@ -64,7 +62,7 @@ unzip -o airbyte-local.zip
64
62
#### Windows (Powershell)
65
63
66
64
``` ps1
67
- Invoke-WebRequest -Uri "https://github.com/faros-ai/airbyte-local-cli/releases/download/v0.0.5 /airbyte-local-win-x64.zip" -OutFile "airbyte-local-win-x64.zip"
65
+ Invoke-WebRequest -Uri "https://github.com/faros-ai/airbyte-local-cli/releases/download/latest /airbyte-local-win-x64.zip" -OutFile "airbyte-local-win-x64.zip"
68
66
Expand-Archive -Path "airbyte-local-win-x64.zip" -DestinationPath . -Force
69
67
70
68
.\airbyte-local
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @faros-ai/airbyte-local-cli-nodejs" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.0.7 " ,
4
4
"description" : " Airbyte local cli node js version" ,
5
5
"private" : true ,
6
6
"packageManager" :
" ^[email protected] " ,
Original file line number Diff line number Diff line change 1
- export const CLI_VERSION = '0.0.6 ' ;
1
+ export const CLI_VERSION = '0.0.7 ' ;
You can’t perform that action at this time.
0 commit comments