diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-19 13:44:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-19 13:44:59 +0000 |
commit | ef2db38de92f2329c1c366318bddfc7e3dee8415 (patch) | |
tree | dee41de1eb0e05f2f6805b77df41a71b3aa66ec2 /.github | |
parent | Adding upstream version 11.0.1. (diff) | |
download | sqlglot-8ce0ff6e4c5539b72e44b3a6fe1713bd042f69a5.tar.xz sqlglot-8ce0ff6e4c5539b72e44b3a6fe1713bd042f69a5.zip |
Adding upstream version 11.1.3.upstream/11.1.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/python-package.yml | 13 | ||||
-rw-r--r-- | .github/workflows/python-publish.yml | 12 |
2 files changed, 12 insertions, 13 deletions
diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 555ac5b..0856a38 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -23,16 +23,3 @@ jobs: make install-dev - name: Run checks (linter, code style, tests) run: make check - - name: Update documentation - run: | - make docs - git add docs - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git commit -m "CI: Auto-generated documentation" -a | exit 0 - if: ${{ matrix.python-version == '3.10' && github.event_name == 'push' }} - - name: Push changes - if: ${{ matrix.python-version == '3.10' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }} - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 2d112b9..ae4ecfc 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -18,6 +18,18 @@ jobs: run: | python -m pip install --upgrade pip pip install setuptools wheel twine + make install-dev + - name: Update documentation + run: | + make docs + git add docs + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git commit -m "CI: Auto-generated documentation" -a | exit 0 + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Build and publish env: TWINE_USERNAME: __token__ |