Skip to content

Commit

Permalink
chore: 👷 CI Release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BlankParticle committed Dec 4, 2023
1 parent 2484794 commit 3963fbe
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: BlankParticle
50 changes: 50 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Release 🚀

on:
push:
tags:
- "v*"

permissions:
contents: read

jobs:
release:
permissions:
id-token: write
contents: write

runs-on: ubuntu-latest
steps:
- name: Checkout Code 🛎
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Pnpm 📦
uses: pnpm/action-setup@v2

- name: Setup Node.js 🟩
uses: actions/setup-node@v4
with:
cache: "pnpm"
node-version: "20"

- name: Install Dependencies 📦
run: pnpm install

- name: Create Git Release 🏷
run: pnpx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Build 🏗
run: pnpm build

- name: Publish to NPM 🚀
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_CONFIG_PROVENANCE: true
run: |
npm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
pnpm publish --access public --no-git-checks
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
src/
README.md
biome.json
.github/
29 changes: 27 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "tailwind-plugin-realtime-colors",
"main": "dist/plugin.js",
"main": "dist/plugin.cjs",
"module": "dist/plugin.js",
"version": "0.0.0",
"description": "A Tailwind CSS plugin that allows you to load colors from URL of Realtime Colors",
"type": "module",
"scripts": {
"dev": "tsup src/*.ts --watch --dts",
Expand All @@ -24,5 +27,27 @@
},
"peerDependencies": {
"tailwindcss": "^3.3.5"
}
},
"repository": {
"type": "git",
"url": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors"
},
"bugs": {
"url": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors/issues"
},
"homepage": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors",
"keywords": ["tailwindcss", "tailwind", "tailwind-plugin", "realtime-colors"],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/BlankParticle"
}
],
"author": {
"name": "BlankParticle",
"email": "[email protected]",
"url": "https://blankparticle.in"
},
"packageManager": "[email protected]",
"license": "MIT"
}

0 comments on commit 3963fbe

Please sign in to comment.