docs: add LSP support to features list in README #1
Workflow file for this run
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 Godot Addon | |
| on: | |
| push: | |
| tags: ['godot-addon-v*'] | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version (e.g., 1.0.0)' | |
| required: true | |
| jobs: | |
| # Run the reusable build & test workflow | |
| build-and-test: | |
| uses: ./.github/workflows/build-and-test.yml | |
| # Only runs after all builds and tests pass | |
| release: | |
| needs: build-and-test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download addon artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: godot-addon | |
| path: addons/ | |
| - name: Determine version | |
| id: version | |
| run: | | |
| if [ "${{ github.event_name }}" = "push" ]; then | |
| echo "version=${GITHUB_REF#refs/tags/godot-addon-v}" >> $GITHUB_OUTPUT | |
| else | |
| echo "version=${{ inputs.version }}" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Create zip | |
| run: zip -r bobbin-godot-addon-${{ steps.version.outputs.version }}.zip addons/ | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: godot-addon-v${{ steps.version.outputs.version }} | |
| name: Bobbin Godot Addon v${{ steps.version.outputs.version }} | |
| files: bobbin-godot-addon-${{ steps.version.outputs.version }}.zip | |
| generate_release_notes: true |