Skip to content

fix: allow joining same table twice (#186) #43

fix: allow joining same table twice (#186)

fix: allow joining same table twice (#186) #43

name: Publish
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Publish
run: make publish
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="SQLFrame ${tag#v}" \
--generate-notes