README.md: fix broken link to logo (#73) #51
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
| # | |
| # This workflow will increase version and create tag based | |
| # on conventional commits and semantic-release package | |
| # | |
| # Created August 23rd, 2025 | |
| # @author ywarezk | |
| # @license MIT | |
| # | |
| name: Release | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/create-github-app-token@v2.1.1 | |
| id: app-token | |
| with: | |
| app-id: ${{ vars.ACADEMEEZ_APP_ID }} | |
| private-key: ${{ secrets.ACADEMEEZ_APP_PRIVATE_KEY }} | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4.2.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3.9.1 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
| run: pnpm exec semantic-release | |