diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2024-01-12 12:51:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-12 12:51:25 +0100 |
commit | 4b5fffc26599b7933c9813f2f7d860adac4e1014 (patch) | |
tree | 3e3a7bc5183ff08fb5a176efeb61264c87c49ece /.github | |
parent | ~ | g4f v-0.2.0.1 (diff) | |
parent | Merge branch 'main' into pypi (diff) | |
download | gpt4free-4b5fffc26599b7933c9813f2f7d860adac4e1014.tar gpt4free-4b5fffc26599b7933c9813f2f7d860adac4e1014.tar.gz gpt4free-4b5fffc26599b7933c9813f2f7d860adac4e1014.tar.bz2 gpt4free-4b5fffc26599b7933c9813f2f7d860adac4e1014.tar.lz gpt4free-4b5fffc26599b7933c9813f2f7d860adac4e1014.tar.xz gpt4free-4b5fffc26599b7933c9813f2f7d860adac4e1014.tar.zst gpt4free-4b5fffc26599b7933c9813f2f7d860adac4e1014.zip |
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/auto-comments.yml | 51 | ||||
-rw-r--r-- | .github/workflows/publish-to-pypi.yml | 52 |
2 files changed, 52 insertions, 51 deletions
diff --git a/.github/workflows/auto-comments.yml b/.github/workflows/auto-comments.yml deleted file mode 100644 index 98335275..00000000 --- a/.github/workflows/auto-comments.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: Auto Comment -on: - issues: - types: - - opened - - closed - - assigned - pull_request: - types: - - opened - - closed - -jobs: - run: - runs-on: ubuntu-latest - steps: - - name: Auto Comment on Issues Opened - uses: wow-actions/auto-comment@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - issuesOpened: | - π @{{ author }} - Thank you for raising an issue. We will investigate into the matter and get back to you as soon as possible. - Please make sure you have given us as much context as possible. - - name: Auto Comment on Issues Closed - uses: wow-actions/auto-comment@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - issuesClosed: | - π @{{ author }} This issue is closed. - - name: Auto Comment on Pull Request Merged - uses: wow-actions/auto-comment@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - pullRequestMerged: | - π @{{ author }} π Congrats on your merged pull request! Thanks for the valuable contribution! ππ Congrats on your merged pull request! Thanks for the valuable contribution! π - - name: Auto Comment on Pull Request Opened - uses: wow-actions/auto-comment@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - pullRequestOpened: | - Helloπ @{{ author }}, I hope you are doing well! - <br> - Thank you for raising your pull request and contributing to our Community π - Please make sure you have followed our contributing guidelines. We will review it as soon as possible. - - name: Auto Comment on Issues Assigned - uses: wow-actions/auto-comment@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - issuesAssigned: | - Hello @{{ author }}, thank you for raising an issue. π I have assigned the issue to you. You can now start working on it. If you encounter any problems, please feel free to connect with us. π diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml new file mode 100644 index 00000000..d5481fd4 --- /dev/null +++ b/.github/workflows/publish-to-pypi.yml @@ -0,0 +1,52 @@ +name: Publish Python π distribution π¦ to PyPI + +on: push + +env: + G4F_VERSION: ${{ github.ref_name }} + +jobs: + build: + name: Build distribution π¦ + if: startsWith(github.ref, 'refs/tags/') + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.x" + - name: Install pypa/build + run: >- + python3 -m + pip install + build + --user + - name: Build a binary wheel and a source tarball + run: python3 -m build + - name: Store the distribution packages + uses: actions/upload-artifact@v3 + with: + name: python-package-distributions + path: dist/ + + publish-to-pypi: + name: >- + Publish distribution on PyPI π + if: startsWith(github.ref, 'refs/tags/') + needs: + - build + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/g4f + permissions: + id-token: write + steps: + - name: Download all the dists + uses: actions/download-artifact@v3 + with: + name: python-package-distributions + path: dist/ + - name: Publish distribution π¦ to PyPI + uses: pypa/gh-action-pypi-publish@release/v1
\ No newline at end of file |