Skip to content

Commit

Permalink
🔖 update minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Nov 10, 2023
1 parent 006d310 commit 412ce72
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
82 changes: 41 additions & 41 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,47 +6,47 @@ on:
- preview

jobs:
pypi-deployment:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10.8"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install project dependencies
run: cd server && poetry install

- name: Configure Poetry Token
run: cd server && poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}

- name: Bump the version
run: cd server && poetry version patch

- name: Build and publish the package
run: cd server && poetry publish --build

- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -am "ci: 🏷 Update PyPI version [skip ci]"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
# pypi-deployment:
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - name: Check out code
# uses: actions/checkout@v2

# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: "3.10.8"

# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install poetry

# - name: Install project dependencies
# run: cd server && poetry install

# - name: Configure Poetry Token
# run: cd server && poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}

# - name: Bump the version
# run: cd server && poetry version patch

# - name: Build and publish the package
# run: cd server && poetry publish --build

# - name: Commit changes
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "GitHub Action"
# git commit -am "ci: 🏷 Update PyPI version [skip ci]"

# - name: Push changes
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: ${{ github.ref }}

build:
strategy:
Expand Down
4 changes: 2 additions & 2 deletions extensions/vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion extensions/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "continue",
"icon": "media/icon.png",
"version": "0.5.3",
"version": "0.4.1",
"repository": {
"type": "git",
"url": "https://github.com/continuedev/continue"
Expand Down

0 comments on commit 412ce72

Please sign in to comment.