diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 8a577c2..2b10fdb 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -132,6 +132,6 @@ jobs: if: github.ref == 'refs/heads/main' permissions: id-token: write - contents: read + contents: write uses: ./.github/workflows/latest-release.yml secrets: inherit diff --git a/.github/workflows/latest-release.yml b/.github/workflows/latest-release.yml index bc92fd1..50d7e5d 100644 --- a/.github/workflows/latest-release.yml +++ b/.github/workflows/latest-release.yml @@ -93,5 +93,7 @@ jobs: generate-release-notes: name: Tag needs: publish + permissions: + contents: write uses: ./.github/workflows/tag.yml secrets: inherit diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index ee9b5b1..b1b7b6d 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -7,6 +7,8 @@ jobs: tag-release: timeout-minutes: 5 runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v1.2.2 @@ -30,14 +32,14 @@ jobs: - name: add release notes to github release uses: softprops/action-gh-release@v2 with: - token: ${{ secrets.WORKFLOW_GITHUB_TOKEN }} + token: ${{ github.token }} tag_name: lapikit/repl@${{ steps.package-version.outputs.version }} body: | Read changelog: [https://github.com/lapikit/lapikit-repl](https://github.com/lapikit/lapikit-repl/blob/main/CHANGELOG.md) Install this update: ```bash - npm i -D lapikit@$lastest + npm i -D lapikit@latest npm i -D @lapikit/repl@${{ steps.package-version.outputs.version }} ``` diff --git a/CHANGELOG.md b/CHANGELOG.md index 6279e99..141a5ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.6] - 2025-02-17 + +### Updated + +- Update funding link and homepage ref for lapikit/repl + ## [0.0.5] - 2025-02-17 Lapikit/Repl package plugin for lapikit standalone repo diff --git a/package.json b/package.json index b330c61..22a362d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lapikit/repl", - "version": "0.0.5", + "version": "0.0.6", "license": "MIT", "publishConfig": { "access": "public" @@ -9,10 +9,12 @@ "name": "Nycolaide", "email": "contact@lapikit.dev" }, + "homepage": "https://lapikit.dev", "repository": { "type": "git", "url": "git+https://github.com/lapikit/lapikit-repl.git" }, + "funding": "https://buymeacoffee.com/nycolaide", "scripts": { "dev": "vite dev", "build": "vite build && npm run prepack",