mirror of
https://github.com/kunkunsh/kunkun-ext-zed.git
synced 2025-04-03 17:56:46 +00:00
Prepare for initial npm package release
- Add repository information to package.json - Update version to 0.0.1 - Add README screenshot - Create GitHub Actions workflow for npm publishing
This commit is contained in:
parent
123a414f9a
commit
5ca3de95c5
36
.github/workflows/npm-publish.yml
vendored
Normal file
36
.github/workflows/npm-publish.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
name: NPM Package Publish
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
release:
|
||||||
|
types: [created]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish-npm:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: oven-sh/setup-bun@v2
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22.x"
|
||||||
|
registry-url: "https://registry.npmjs.org"
|
||||||
|
- run: bun install
|
||||||
|
- run: bun run build
|
||||||
|
- name: Check if version is already published
|
||||||
|
run: |
|
||||||
|
PACKAGE_VERSION=$(node -p "require('./package.json').version")
|
||||||
|
PACKAGE_NAME=$(jq -r '.name' package.json)
|
||||||
|
npm view $PACKAGE_NAME@$PACKAGE_VERSION
|
||||||
|
continue-on-error: true
|
||||||
|
id: check_version
|
||||||
|
- name: Publish
|
||||||
|
if: steps.check_version.outcome != 'success'
|
||||||
|
run: npm publish --provenance --access public
|
||||||
|
env:
|
||||||
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
@ -3,3 +3,5 @@
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Open recent zed projects
|
- Open recent zed projects
|
||||||
|
|
||||||
|

|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.kunkun.sh",
|
"$schema": "https://schema.kunkun.sh",
|
||||||
"name": "kunkun-ext-zed",
|
"name": "kunkun-ext-zed",
|
||||||
"version": "0.0.10",
|
"version": "0.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/kunkunsh/kunkun-ext-zed"
|
||||||
|
},
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "Zed Recent Projects",
|
"name": "Zed Recent Projects",
|
||||||
"shortDescription": "Open Zed Recent Projects",
|
"shortDescription": "Open Zed Recent Projects",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user