fix: More log output reduction. (#39) #4
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: Create Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| create-release: | |
| name: Create GitHub Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Extract version from tag | |
| id: version | |
| run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | |
| - name: Create Release | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| gh release create ${{ github.ref_name }} \ | |
| --title "Release ${{ github.ref_name }}" \ | |
| --generate-notes \ | |
| --notes-start-tag $(git describe --tags --abbrev=0 ${{ github.ref_name }}^ 2>/dev/null || echo "") \ | |
| --notes "## 📦 Installation | |
| **PyPI Package:** | |
| \`\`\`bash | |
| pip install mcp-outline==${{ steps.version.outputs.VERSION }} | |
| \`\`\` | |
| **Docker Image:** | |
| \`\`\`bash | |
| docker pull ghcr.io/${{ github.repository }}:${{ steps.version.outputs.VERSION }} | |
| \`\`\` | |
| --- | |
| " |