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
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release

on: [push]

jobs:
release:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v2

- name: Prepare repository
run: git fetch --unshallow --tags

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Set Up Node
uses: actions/setup-node@v3
with:
node-version: 22
cache: pnpm

- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
pnpm install
pnpm release
7 changes: 0 additions & 7 deletions MAINTAINERS.md

This file was deleted.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@
"fmt-all": "pnpm -r fmt",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"storybook.build": "pnpm --filter qwik-app storybook.build"
"storybook.build": "pnpm --filter qwik-app storybook.build",
"release": "pnpm --filter storybook-framework-qwik release"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "22.13.10",
"concurrently": "^9.1.2",
"prettier": "^3.6.2",
"@types/node": "22.13.10",
"typescript": "5.9.2",
"vercel": "^48.1.6",
"wait-on": "^9.0.1"
Expand Down
1 change: 1 addition & 0 deletions packages/storybook-framework-qwik/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.env
8 changes: 0 additions & 8 deletions packages/storybook-framework-qwik/.releaserc

This file was deleted.

18 changes: 11 additions & 7 deletions packages/storybook-framework-qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "storybook-framework-qwik",
"version": "0.4.3",
"version": "0.4.4",
"description": "Storybook for Qwik: View Qwik components in isolation.",
"keywords": [
"storybook",
Expand Down Expand Up @@ -58,7 +58,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/literalpie/storybook-framework-qwik.git",
"url": "git+https://github.com/literalpie/storybook-framework-qwik.git",
"directory": "app/qwik"
},
"license": "MIT",
Expand All @@ -77,10 +77,9 @@
"scripts": {
"watch": "tsc --watch --outDir ./dist --listEmittedFiles",
"build": "tsc --outDir ./dist --listEmittedFiles",
"//semantic-release": "this should be a GHA eventually. I only made this work once locally using tokens in env vars",
"semantic-release": "semantic-release",
"fmt": "prettier --write .",
"fmt.check": "prettier --check ."
"fmt.check": "prettier --check .",
"release": "pnpm build && pnpm auto shipit"
},
"dependencies": {
"@storybook/builder-vite": "^9.0.0",
Expand All @@ -94,10 +93,9 @@
"@builder.io/qwik-city": ">=1.0.0"
},
"devDependencies": {
"@suin/semantic-release-yarn": "1.1.0",
"@types/node": "^22.13.10",
"semantic-release": "^24.2.3",
"storybook": "9.1.8",
"auto": "11.3.0",
"typescript": "~5.9.2",
"vite": "^7.1.7"
},
Expand All @@ -106,5 +104,11 @@
},
"publishConfig": {
"access": "public"
},
"author": "literalpie <[email protected]>",
"auto": {
"plugins": [
"npm"
]
}
}
Loading