diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-25 00:50:32 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-25 00:50:32 -0700 |
commit | 208eb65f67ccc62ce6d683fd9bed2fe9524b2136 (patch) | |
tree | fdfa9e5b68ead3e5930c9c109a822ccf909512b7 /.github/workflows | |
parent | afae1600255714d0a4f18f892d3e7b5e1d921962 (diff) | |
download | sncontinue-208eb65f67ccc62ce6d683fd9bed2fe9524b2136.tar.gz sncontinue-208eb65f67ccc62ce6d683fd9bed2fe9524b2136.tar.bz2 sncontinue-208eb65f67ccc62ce6d683fd9bed2fe9524b2136.zip |
fix: :green_heart: update pypi version, don't push from main
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yaml | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index de17dd8d..734d9374 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,47 +6,47 @@ on: - main jobs: - pypi-deployment: - runs-on: ubuntu-20.04 - 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 continuedev && poetry install - - - name: Configure Poetry Token - run: cd continuedev && poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }} - - - name: Bump the version - run: cd continuedev && poetry version patch - - - name: Build and publish the package - run: cd continuedev && poetry publish --build - - - name: Commit changes - run: | - git config --local user.email "action@github.com" - 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-20.04 + # 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 continuedev && poetry install + + # - name: Configure Poetry Token + # run: cd continuedev && poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }} + + # - name: Bump the version + # run: cd continuedev && poetry version patch + + # - name: Build and publish the package + # run: cd continuedev && poetry publish --build + + # - name: Commit changes + # run: | + # git config --local user.email "action@github.com" + # 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 }} pyinstaller: strategy: |