diff options
-rw-r--r-- | .github/workflows/main.yaml | 124 | ||||
-rw-r--r-- | extension/package-lock.json | 4 | ||||
-rw-r--r-- | extension/package.json | 2 |
3 files changed, 65 insertions, 65 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6635e1a1..f2fcf368 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -1,77 +1,77 @@ -name: Publish Extension +# name: Publish Extension -on: - push: - branches: - - main +# on: +# push: +# branches: +# - main -jobs: - publish: - runs-on: ubuntu-latest +# jobs: +# publish: +# runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 +# steps: +# - name: Checkout +# uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.8" +# - name: Set up Python +# uses: actions/setup-python@v2 +# with: +# python-version: "3.8" - - name: Install Poetry - run: | - curl -sSL https://install.python-poetry.org | python3 - +# - name: Install Poetry +# run: | +# curl -sSL https://install.python-poetry.org | python3 - - - name: Install Python dependencies - run: | - cd continuedev - poetry install +# - name: Install Python dependencies +# run: | +# cd continuedev +# poetry install - - name: Cache extension node_modules - uses: actions/cache@v2 - with: - path: extension/node_modules - key: ${{ runner.os }}-node-${{ hashFiles('extension/package-lock.json') }} +# - name: Cache extension node_modules +# uses: actions/cache@v2 +# with: +# path: extension/node_modules +# key: ${{ runner.os }}-node-${{ hashFiles('extension/package-lock.json') }} - - name: Cache react-app node_modules - uses: actions/cache@v2 - with: - path: extension/react-app/node_modules - key: ${{ runner.os }}-node-${{ hashFiles('extension/react-app/package-lock.json') }} +# - name: Cache react-app node_modules +# uses: actions/cache@v2 +# with: +# path: extension/react-app/node_modules +# key: ${{ runner.os }}-node-${{ hashFiles('extension/react-app/package-lock.json') }} - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: "14" +# - name: Set up Node.js +# uses: actions/setup-node@v2 +# with: +# node-version: "14" - - name: Install extension Dependencies - run: | - cd extension - npm ci --legacy-peer-deps +# - name: Install extension Dependencies +# run: | +# cd extension +# npm ci --legacy-peer-deps - - name: Install react-app Dependencies - run: | - cd extension/react-app - npm ci --legacy-peer-deps +# - name: Install react-app Dependencies +# run: | +# cd extension/react-app +# npm ci --legacy-peer-deps - - name: Build and Publish - run: | - cd extension - npm run full-package +# - name: Build and Publish +# run: | +# cd extension +# npm run full-package - - name: Commit changes - run: | - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git commit -am "Update package.json version [skip ci]" +# - name: Commit changes +# run: | +# git config --local user.email "action@github.com" +# git config --local user.name "GitHub Action" +# git commit -am "Update package.json version [skip ci]" - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} +# - name: Push changes +# uses: ad-m/github-push-action@master +# with: +# github_token: ${{ secrets.GITHUB_TOKEN }} - - name: Upload .vsix artifact - uses: actions/upload-artifact@v2 - with: - name: vsix-artifact - path: extension/build/* +# - name: Upload .vsix artifact +# uses: actions/upload-artifact@v2 +# with: +# name: vsix-artifact +# path: extension/build/* diff --git a/extension/package-lock.json b/extension/package-lock.json index e92de305..8aacd343 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.201", + "version": "0.0.202", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.201", + "version": "0.0.202", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index 2f8b577d..f52171ac 100644 --- a/extension/package.json +++ b/extension/package.json @@ -14,7 +14,7 @@ "displayName": "Continue", "pricing": "Free", "description": "The open-source coding autopilot", - "version": "0.0.201", + "version": "0.0.202", "publisher": "Continue", "engines": { "vscode": "^1.67.0" |