Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73189400ee | ||
|
|
16ea9afebe | ||
|
|
8a239313d3 | ||
|
|
c707e6b7b1 | ||
|
|
a3dbb37dd2 | ||
|
|
9c4e631bc7 | ||
|
|
9dc4910d4b | ||
|
|
5d1978011e | ||
|
|
d84cc27b9c | ||
|
|
e43e55c2b7 | ||
|
|
f884df6312 |
@@ -1,18 +1,30 @@
|
|||||||
name: Update version tags
|
name: Publish core package to npm
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_dispatch:
|
||||||
branches-ignore:
|
release:
|
||||||
- "**"
|
types: [released]
|
||||||
tags:
|
|
||||||
- "v*.*.*"
|
|
||||||
|
|
||||||
permissions: {}
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-semver:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: read
|
||||||
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
- name: Checkout code
|
||||||
- uses: haya14busa/action-update-semver@7d2c558640ea49e798d46539536190aff8c18715 # v1.5.1
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
uses: ./.github/actions/install-dependencies
|
||||||
|
|
||||||
|
- name: Verify core package
|
||||||
|
run: |
|
||||||
|
pnpm --filter @stats-organization/github-readme-stats-core run typecheck
|
||||||
|
pnpm test
|
||||||
|
pnpm build:packages
|
||||||
|
pnpm --filter @stats-organization/github-readme-stats-core pack --dry-run
|
||||||
|
|
||||||
|
- name: Publish core package to npm
|
||||||
|
run: pnpm --filter @stats-organization/github-readme-stats-core publish --provenance --access public --no-git-checks
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
name: Update version tags
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- "**"
|
||||||
|
tags:
|
||||||
|
- "v*.*.*"
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-semver:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
- uses: haya14busa/action-update-semver@7d2c558640ea49e798d46539536190aff8c18715 # v1.5.1
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Core library powering [GitHub Stats Extended](https://github.com/stats-organization/github-stats-extended) and [GitHub Readme Stats Action](https://github.com/readme-tools/github-readme-stats-action).
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@stats-organization/github-readme-stats-core",
|
"name": "@stats-organization/github-readme-stats-core",
|
||||||
"version": "2.0.0",
|
"version": "2.1.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"homepage": "https://github-stats-extended.vercel.app/frontend",
|
"homepage": "https://github-stats-extended.vercel.app/frontend",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
@@ -60,13 +60,15 @@
|
|||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"build",
|
"build",
|
||||||
"src"
|
"src",
|
||||||
|
"README.md"
|
||||||
],
|
],
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc -p tsconfig.build.json",
|
"build": "tsc -p tsconfig.build.json",
|
||||||
|
"prepack": "pnpm run build",
|
||||||
"test": "vitest",
|
"test": "vitest",
|
||||||
"test:update:snapshot": "vitest -u",
|
"test:update:snapshot": "vitest -u",
|
||||||
"test:e2e": "vitest --config vitest.config.e2e.ts",
|
"test:e2e": "vitest --config vitest.config.e2e.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user