docs: remove docs dir and update README #3
This file contains hidden or 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: Release Please | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/checkout@v4 | |
| if: ${{ steps.release.outputs.release_created }} | |
| with: | |
| submodules: true | |
| - name: Build Claude Code archive | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| tar -czvf supabase-claude-code-plugin.tar.gz \ | |
| --dereference \ | |
| .claude-plugin/ \ | |
| .mcp.json \ | |
| skills/ | |
| - name: Build Cursor archive | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| tar -czvf supabase-cursor-plugin.tar.gz \ | |
| --dereference \ | |
| .cursor-plugin/ \ | |
| mcp.json \ | |
| skills/ | |
| - name: Build Gemini archive | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| tar -czvf supabase-gemini-extension.tar.gz \ | |
| --dereference \ | |
| gemini-extension.json \ | |
| SUPABASE.md \ | |
| skills/ | |
| - name: Build Codex archive | |
| if: ${{ steps.release.outputs.release_created }} | |
| run: | | |
| tar -czvf supabase-codex-plugin.tar.gz \ | |
| --dereference \ | |
| .codex-plugin/ \ | |
| .mcp.json \ | |
| skills/ \ | |
| assets/ | |
| - name: Upload release assets | |
| if: ${{ steps.release.outputs.release_created }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release upload ${{ steps.release.outputs.tag_name }} \ | |
| supabase-claude-code-plugin.tar.gz \ | |
| supabase-cursor-plugin.tar.gz \ | |
| supabase-gemini-extension.tar.gz \ | |
| supabase-codex-plugin.tar.gz |