@@ -100,12 +100,12 @@ jobs:
100
100
npm ci
101
101
102
102
# 2.25 Run core tests
103
- - name : Run core tests
104
- run : |
105
- cd core
106
- npm run test
107
- env :
108
- OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
103
+ # - name: Run core tests
104
+ # run: |
105
+ # cd core
106
+ # npm run test
107
+ # env:
108
+ # OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
109
109
110
110
# 2.5. Pre package
111
111
- name : Set var for environment info
@@ -124,20 +124,20 @@ jobs:
124
124
npm install -f esbuild
125
125
126
126
# 4. Run tests for the extension
127
- - name : Install Xvfb for Linux and run tests
128
- run : |
129
- sudo apt-get install -y xvfb # Install Xvfb
130
- Xvfb :99 & # Start Xvfb
131
- export DISPLAY=:99 # Export the display number to the environment
132
- cd extensions/vscode
133
- npm run test
134
- if : matrix.os == 'ubuntu-latest'
127
+ # - name: Install Xvfb for Linux and run tests
128
+ # run: |
129
+ # sudo apt-get install -y xvfb # Install Xvfb
130
+ # Xvfb :99 & # Start Xvfb
131
+ # export DISPLAY=:99 # Export the display number to the environment
132
+ # cd extensions/vscode
133
+ # npm run test
134
+ # if: matrix.os == 'ubuntu-latest'
135
135
136
- - name : Run extension tests
137
- run : |
138
- cd extensions/vscode
139
- npm run test
140
- if : matrix.os != 'ubuntu-latest'
136
+ # - name: Run extension tests
137
+ # run: |
138
+ # cd extensions/vscode
139
+ # npm run test
140
+ # if: matrix.os != 'ubuntu-latest'
141
141
142
142
# 5. Package the extension
143
143
- name : Package the extension
@@ -191,7 +191,7 @@ jobs:
191
191
win32-x64/*.vsix
192
192
win32-arm64/*.vsix
193
193
token : ${{ secrets.CI_GITHUB_TOKEN }}
194
- repository : ahrefs/ahrefs- continue
194
+ repository : continuedev/ continue
195
195
196
196
publish :
197
197
runs-on : ubuntu-latest
@@ -231,27 +231,27 @@ jobs:
231
231
npx ovsx publish -p ${{ secrets.VSX_REGISTRY_TOKEN }} --packagePath ../../alpine-x64/*.vsix ../../darwin-arm64/*.vsix ../../darwin-x64/*.vsix ../../linux-arm64/*.vsix ../../linux-armhf/*.vsix ../../linux-x64/*.vsix ../../win32-x64/*.vsix ../../win32-arm64/*.vsix
232
232
233
233
# 4. Update the package.json version and push changes
234
- # - name: Update version in package.json
235
- # run: |
236
- # cd extensions/vscode
237
- # npm version patch
234
+ - name : Update version in package.json
235
+ run : |
236
+ cd extensions/vscode
237
+ npm version patch
238
238
239
- # - name: Commit changes
240
- # run: |
241
- # git config --local user.email "[email protected] "
242
- # git config --local user.name "GitHub Action"
243
- # git commit -am "💚 Update package.json version [skip ci]"
239
+ - name : Commit changes
240
+ run : |
241
+ git config --local user.email "[email protected] "
242
+ git config --local user.name "GitHub Action"
243
+ git commit -am "💚 Update package.json version [skip ci]"
244
244
245
- # - name: Push changes
246
- # uses: ad-m/github-push-action@master
247
- # with:
248
- # github_token: ${{ secrets.GITHUB_TOKEN }}
249
- # branch: ${{ github.ref }}
245
+ - name : Push changes
246
+ uses : ad-m/github-push-action@master
247
+ with :
248
+ github_token : ${{ secrets.GITHUB_TOKEN }}
249
+ branch : ${{ github.ref }}
250
250
251
251
# 5 Send to Discord Webhook
252
252
- name : Discord Commits
253
253
254
254
with :
255
255
webhook : ${{ secrets.DISCORD_WEBHOOK }}
256
256
template : " avatar-with-link"
257
- include-extras : true
257
+ include-extras : true
0 commit comments