fix: parse interval as word operator #395
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Package | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- closed | |
jobs: | |
publish-package: | |
if: ${{ github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/v') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out sqlfmt main branch | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.2.2 | |
- name: Configure poetry | |
run: poetry config --no-interaction pypi-token.pypi ${{ secrets.SQLFMT_PYPI_TOKEN }} | |
- name: Get sqlfmt Version | |
id: sqlfmt_version | |
run: echo "sqlfmt_version=$(poetry version --short)" >> $GITHUB_OUTPUT | |
- name: Build package | |
run: poetry build --no-interaction | |
- name: Publish package to PyPI | |
run: poetry publish --no-interaction | |
- name: Create a Github Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: v${{ steps.sqlfmt_version.outputs.sqlfmt_version }} | |
target_commitish: main | |
token: ${{ secrets.SQLFMT_RELEASE_TOKEN }} | |
body_path: CHANGELOG.md | |
files: | | |
LICENSE | |
dist/*sqlfmt*.whl | |
dist/*sqlfmt*.tar.gz | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64,linux/arm | |
push: true | |
tags: | | |
ghcr.io/${{ github.repository }}:latest | |
ghcr.io/${{ github.repository }}:v${{ steps.sqlfmt_version.outputs.sqlfmt_version }} |