Skip to content

Commit

Permalink
Release 1.0.4 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dulajdeshan authored Nov 7, 2024
2 parents 7b82ef3 + a2a0978 commit 44d8114
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 23 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
github: [dulajdeshan]
patreon: dulajdeshan
buy_me_a_coffee: dulajdeshan
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Tests
on:
push:
branches: [main]
branches: ["*"]
pull_request:
branches: [main]
types: [opened]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ on:
push:
branches:
- release
- main
jobs:
release:
name: Release and Publish
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/release' }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -24,7 +24,7 @@ jobs:
run: yarn build
- name: Install semantic-release
run: yarn global add semantic-release-cli semantic-release
- run: semantic-release --branches release
- run: semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 0 additions & 3 deletions .npmrc

This file was deleted.

22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,21 @@
</a>
</p>

Strapi Bootstrap Icons Plugin is a custom plugin for Strapi that allows to use [Bootstrap Icons](https://icons.getbootstrap.com/) for your content.
Strapi Bootstrap Icons Plugin is a custom plugin for Strapi that allows to use [Bootstrap Icons](https://icons.getbootstrap.com/) for your content.

## Installation
## ⚙️ Installation

To install the Strapi Bootstrap Icons, simply run one of the following command:

```
npm install strapi-bootstrap-icons
```

```
yarn add strapi-bootstrap-icons
```

## Setup
## ⚡️ Usage

After installation you will find the `Bootstrap Icon` at the custom fields section of the content-type builder.

Expand All @@ -46,12 +47,19 @@ Now You can create new records via the Admin panel with selecting your preferred

![strapi bootstrap icons](./screenshot/screenshot-3.png)


![strapi bootstrap icons](./screenshot/screenshot-4.png)

## Demo
## 🖥️ Demo

![strapi bootstrap icons demo](./screenshot/demo.gif)

## License
This plugin is licensed under the MIT License. See the LICENSE file for more information.
## 👍 Contribute

If you want to say **Thank You** and/or support the active development of `Strapi Boostrap Icons`:

1. Add a [GitHub Star](https://github.com/dynolabs/strapi-bootstrap-icons/stargazers) to the project.
2. Support the project by donating a [cup of coffee](https://buymeacoff.ee/dulajdeshan).

## 🧾 License

This plugin is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more information.
13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,30 +47,25 @@
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.3 || ^6.1.8"
},
"homepage": "https://github.com/Dulajdeshan/strapi-bootstrap-icons",
"readme": "https://github.com/Dulajdeshan/strapi-bootstrap-icons#readme",
"homepage": "https://github.com/dynolabs/strapi-bootstrap-icons",
"readme": "https://github.com/dynolabs/strapi-bootstrap-icons#readme",
"author": {
"name": "Dulaj Ariyaratne",
"email": "dulajdeshans@gmail.com",
"url": "https://github.com/dulajdeshan"
},
"repository": {
"url": "https://github.com/Dulajdeshan/strapi-bootstrap-icons",
"url": "https://github.com/dynolabs/strapi-bootstrap-icons",
"type": "git",
"directory": "."
},
"bugs": {
"url": "https://github.com/Dulajdeshan/strapi-bootstrap-icons/issues",
"url": "https://github.com/dynolabs/strapi-bootstrap-icons/issues",
"email": "dulajdeshans@gmail.com"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"latest"
]
},
"engines": {
"node": ">=16.0.0 <=20.x.x",
"npm": ">=6.0.0"
Expand Down
7 changes: 7 additions & 0 deletions release.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* @type {import('semantic-release').GlobalConfig}
*/

module.exports = {
branches: ['release', { name: 'main', prerelease: 'next' }],
};

0 comments on commit 44d8114

Please sign in to comment.