From f90632449f9798f3a565ab1f49f1667ee413fad4 Mon Sep 17 00:00:00 2001
From: jaywcjlove <398188662@qq.com>
Date: Sun, 8 Oct 2023 15:19:26 +0800
Subject: [PATCH 1/3] ci: update workflows config.
---
.github/workflows/create-tag.yml | 31 +++++++++++++++++++++----------
1 file changed, 21 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml
index 9a6b81e..ca94507 100644
--- a/.github/workflows/create-tag.yml
+++ b/.github/workflows/create-tag.yml
@@ -16,15 +16,26 @@ jobs:
- run: npm install
- run: npm run all
- - run: mkdir -p build
-
- - name: Converts Markdown to HTML
- uses: jaywcjlove/markdown-to-html-cli@main
- with:
- output: build/index.html
- github-corners: https://github.com/jaywcjlove/create-tag-action
- favicon: data:image/svg+xml,
-
+ - name: Create idoc config
+ run: |
+ cat > idoc.yml << EOF
+ site: "Create Tag {{version}}"
+ menus:
+ Home: index.html
+ footer: |
+ Changelog Generator •
+ Contributors •
+ Read File Content •
+ Generated Badges
+
+ Released under the MIT License. Copyright © {{idocYear}} Kenny Wong
+ Generated by idoc v{{idocVersion}}
+
+ EOF
+
+ - run: npm install idoc@1.27.2 -g
+ - run: idoc
+
- run: ls -al
- run: pwd
@@ -49,7 +60,7 @@ jobs:
with:
commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }}
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./build
+ publish_dir: ./dist
- name: Generate Changelog
id: changelog
From df1a23f990ee9194444ad5b9924ec0772b9e5dde Mon Sep 17 00:00:00 2001
From: jaywcjlove <398188662@qq.com>
Date: Sat, 25 Nov 2023 19:42:13 +0800
Subject: [PATCH 2/3] chore: add sponsor badge.
---
.github/FUNDING.yml | 9 +++++++++
.github/workflows/create-tag.yml | 1 +
README.md | 1 +
3 files changed, 11 insertions(+)
create mode 100644 .github/FUNDING.yml
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000..716bbf0
--- /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/mocker-api
+# 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/create-tag.yml b/.github/workflows/create-tag.yml
index ca94507..4fbe8ea 100644
--- a/.github/workflows/create-tag.yml
+++ b/.github/workflows/create-tag.yml
@@ -23,6 +23,7 @@ jobs:
menus:
Home: index.html
footer: |
+ Sponsor •
Changelog Generator •
Contributors •
Read File Content •
diff --git a/README.md b/README.md
index 1dcf32f..72fa537 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
create-tag-action
===
+[](https://jaywcjlove.github.io/#/sponsor)
[](https://github.com/jaywcjlove/create-tag-action/actions/workflows/create-tag.yml)
[](https://github.com/jaywcjlove/create-tag-action/network/dependents)
From 0dea9aedf9397f3701b06c378c1d4461f02a6624 Mon Sep 17 00:00:00 2001
From: jaywcjlove <398188662@qq.com>
Date: Sat, 25 Nov 2023 19:42:44 +0800
Subject: [PATCH 3/3] released v1.3.20
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 73ef5f4..fb5b865 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "create-tag-action",
- "version": "1.3.19",
+ "version": "1.3.20",
"private": true,
"description": "Auto create tags from commit or package.json.",
"main": "dist/index.js",