Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions .github/workflows/latest-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,7 @@ jobs:
generate-release-notes:
name: Tag
needs: publish
permissions:
contents: write
uses: ./.github/workflows/tag.yml
secrets: inherit
6 changes: 4 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
```

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lapikit/repl",
"version": "0.0.5",
"version": "0.0.6",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand All @@ -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",
Expand Down