feat: add new SVG icons and update component styles for improved UI c… #69
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: | |
| - master | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Release Please | |
| uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Log release info | |
| if: steps.release.outputs.release_created | |
| run: | | |
| echo "Release created: ${{ steps.release.outputs.release_created }}" | |
| echo "Tag: ${{ steps.release.outputs.tag_name }}" | |
| echo "Version: ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}" | |
| echo "Upload URL: ${{ steps.release.outputs.upload_url }}" | |
| - name: Check if publish workflow will trigger | |
| if: steps.release.outputs.release_created | |
| run: | | |
| echo "✅ Release published! The 'Publish Package' workflow should trigger now." | |
| echo "Check the Actions tab to verify." |