Skip to content

Commit

Permalink
Merge branch 'release/v0.10.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Mar 5, 2024
2 parents 385b91b + 3cfc6d9 commit cb2db1c
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 9 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- 'v*'

jobs:
build:
runs-on: ubuntu-latest

permissions:
contents: write
packages: write

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
- run: npm version
- run: npm install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Oui...

> *...c'est pour Vue.js :)*
> *...c'est un "kit" pour Vue.js :)*
**Just another set of UI components for Vue.js with a proper French-sounding name.**

CSS and Styleguide:

- [oui-stylus](./oui-stylus/README.md)
- [oui-stylus](./stylus/README.md)

Libs:

- [oui-float](./oui-float/README.md)
- [oui-notification](./oui-notification/README.md)
- [oui-modal](./oui-modal/README.md)
- [oui-object](./oui-object/README.md)
- [oui-float](./lib/float/README.md)
- [oui-notification](./lib/notification/README.md)
- [oui-modal](./lib/modal/README.md)
- [oui-object](./lib/object/README.md)

Dependencies used in some libs:

Expand Down
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oui-kit",
"type": "module",
"version": "0.9.3",
"version": "0.10.2",
"author": {
"name": "Dirk Holtwick",
"email": "[email protected]",
Expand Down Expand Up @@ -64,7 +64,7 @@
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"prepublish": "npx only-allow pnpm",
"release": "nr bump && nr build && nr publish",
"release": "nr bump && nr build && na publish",
"start": "nr dev",
"story:build": "histoire build",
"story:dev": "histoire dev",
Expand Down
Binary file removed public/favicon.ico
Binary file not shown.

0 comments on commit cb2db1c

Please sign in to comment.