diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..6c68847 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,9 @@ +# These are supported funding model platforms + +# github: [jaywcjlove] +# patreon: # Replace with a single Patreon username +# open_collective: # Replace with a single Open Collective username +# ko_fi: # Replace with a single Ko-fi username +# tidelift: npm/colors-cli +# community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +custom: https://jaywcjlove.github.io/#/sponsor diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 426b4fd..15c12af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,85 +6,91 @@ on: jobs: build-deploy: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest + permissions: + contents: write + id-token: write steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: 14 - - - run: npm install - - run: npm run build - - run: cp -rp main.js dist/main.js + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + registry-url: 'https://registry.npmjs.org' + + - run: npm install + - run: npm run build + - run: cp -rp main.js dist/main.js - - name: 🌐 Generate Documentation Website - uses: jaywcjlove/action-ejs@main - with: - template-file: demo.html - output: dist/index.html - vars-file: | - { "markdownString": "./README.md" } + - name: 🌐 Generate Documentation Website + uses: jaywcjlove/action-ejs@main + with: + template-file: demo.html + output: dist/index.html + vars-file: | + { "markdownString": "./README.md" } - - name: Generate Contributors Images - uses: jaywcjlove/github-action-contributors@main - with: - filter-author: (renovate\[bot\]|renovate-bot|dependabot\[bot\]) - output: dist/CONTRIBUTORS.svg - avatarSize: 42 + - name: Generate Contributors Images + uses: jaywcjlove/github-action-contributors@main + with: + filter-author: (renovate\[bot\]|renovate-bot|dependabot\[bot\]) + output: dist/CONTRIBUTORS.svg + avatarSize: 42 - - name: Is a tag created auto? - id: create_tag - uses: jaywcjlove/create-tag-action@v1.3.6 - with: - token: ${{ secrets.GITHUB_TOKEN }} - package-path: ./package.json + - name: Is a tag created auto? + id: create_tag + uses: jaywcjlove/create-tag-action@main + with: + token: ${{ secrets.GITHUB_TOKEN }} + package-path: ./package.json - - name: get tag version - id: tag_version - uses: jaywcjlove/changelog-generator@v1.5.0 + - name: get tag version + id: tag_version + uses: jaywcjlove/changelog-generator@main - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - user_name: 'github-actions[bot]' - user_email: 'github-actions[bot]@users.noreply.github.com' - commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }} - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + user_name: 'github-actions[bot]' + user_email: 'github-actions[bot]@users.noreply.github.com' + commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }} + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./dist - - name: Generate Changelog - id: changelog - uses: jaywcjlove/changelog-generator@v1.5.0 - if: steps.create_tag.outputs.successful - with: - token: ${{ secrets.GITHUB_TOKEN }} - head-ref: ${{ steps.create_tag.outputs.version }} - filter-author: (小弟调调™|Renovate Bot) - filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}' + - name: Generate Changelog + id: changelog + uses: jaywcjlove/changelog-generator@main + if: steps.create_tag.outputs.successful + with: + token: ${{ secrets.GITHUB_TOKEN }} + head-ref: ${{ steps.create_tag.outputs.version }} + filter-author: (小弟调调™|Renovate Bot) + filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}' - - name: Create Release - uses: ncipollo/release-action@v1 - if: steps.create_tag.outputs.successful - with: - token: ${{ secrets.GITHUB_TOKEN }} - name: ${{ steps.create_tag.outputs.version }} - tag: ${{ steps.create_tag.outputs.version }} - body: | - [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@wcj/dark-mode@${{steps.create_tag.outputs.versionNumber}}/file/README.md) + - name: Create Release + uses: ncipollo/release-action@v1 + if: steps.create_tag.outputs.successful + with: + token: ${{ secrets.GITHUB_TOKEN }} + name: ${{ steps.create_tag.outputs.version }} + tag: ${{ steps.create_tag.outputs.version }} + body: | + [![Buy me a coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee)](https://jaywcjlove.github.io/#/sponsor) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@wcj/dark-mode@${{steps.create_tag.outputs.versionNumber}}/file/README.md) - Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/jaywcjlove/dark-mode/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html - Comparing Changes: ${{ steps.changelog.outputs.compareurl }} + Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/jaywcjlove/dark-mode/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html + Comparing Changes: ${{ steps.changelog.outputs.compareurl }} - ${{ steps.changelog.outputs.changelog }} + ${{ steps.changelog.outputs.changelog }} - ```bash - npm i @wcj/dark-mode@${{steps.create_tag.outputs.versionNumber}} - ``` + ```bash + npm i @wcj/dark-mode@${{steps.create_tag.outputs.versionNumber}} + ``` - - run: rm -rf dist/index.html - - run: rm -rf dist/main.js - - name: 📦 @wcj/dark-mode publish to NPM - uses: JS-DevTools/npm-publish@v1 - with: - token: ${{ secrets.NPM_TOKEN }} - package: ./package.json \ No newline at end of file + - run: rm -rf dist/index.html + - run: rm -rf dist/main.js + + - run: npm publish --access public --provenance + name: 📦 compile-less-cli publish to NPM + continue-on-error: true + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + \ No newline at end of file diff --git a/README.md b/README.md index 2b9a80b..06023e9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ dark-mode === +[![Buy me a coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee)](https://jaywcjlove.github.io/#/sponsor) [![CI](https://github.com/jaywcjlove/dark-mode/actions/workflows/ci.yml/badge.svg)](https://github.com/jaywcjlove/dark-mode/actions/workflows/ci.yml) [![jsDelivr CDN](https://data.jsdelivr.com/v1/package/npm/@wcj/dark-mode/badge?style=rounded)](https://www.jsdelivr.com/package/npm/@wcj/dark-mode) [![NPM Downloads](https://img.shields.io/npm/dm/@wcj/dark-mode.svg?style=flat)](https://www.npmjs.com/package/@wcj/dark-mode) diff --git a/package.json b/package.json index 9ed74f7..eec9131 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "1.0.15", "description": "Web Component that toggles dark mode 🌒", "homepage": "https://jaywcjlove.github.io/dark-mode", + "funding": "https://jaywcjlove.github.io/#/sponsor", "author": "jaywcjlove", "license": "MIT", "main": "./main.js",