Skip to content

Commit 2a13261

Browse files
committed
publish
1 parent a51e2a2 commit 2a13261

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Notify Main Repo
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
notify:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Trigger main repo workflow
13+
run: |
14+
curl -X POST \
15+
-H "Authorization: token ${{ secrets.RUBROT_PAT }}" \
16+
-H "Accept: application/vnd.github.v3+json" \
17+
https://api.github.com/repos/RubricLab/rubric/actions/workflows/update-submodules.yml/dispatches \
18+
-d '{"ref":"main","inputs":{"repository":"${{ github.repository }}","ref":"${{ github.ref }}"}}'

.github/workflows/publish.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release Package
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: read
10+
packages: write
11+
id-token: write
12+
13+
jobs:
14+
release:
15+
uses: rubriclab/package/.github/workflows/release-package.yml@main
16+
secrets: inherit

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- [2025-04-14] [publish](https://github.com/RubricLab/cli/commit/57579caea726ee9f77585a743f97648799f4fd04)
12
- [2025-04-07] [first pass](https://github.com/RubricLab/cli/commit/392698be5e5b6fd3706876e8d91340d7e1d2951f)
23
# Changelog
34

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"scripts": {
33
"prepare": "bun x simple-git-hooks",
4-
"bleed": "bun x npm-check-updates -u && bun i",
4+
"bleed": "bun x npm-check-updates -u",
55
"clean": "rm -rf .next && rm -rf node_modules",
66
"format": "bun x biome format --write .",
7-
"lint": "bun x biome check . && bun x biome lint .",
8-
"lint:fix": "bun x biome check --fix --unsafe . && bun x biome lint --write --unsafe ."
7+
"lint": "bun x biome check .",
8+
"lint:fix": "bun x biome lint . --write --unsafe"
99
},
1010
"name": "@rubriclab/cli",
11-
"version": "0.0.1",
11+
"version": "0.0.2",
1212
"main": "index.ts",
1313
"dependencies": {
1414
"@rubriclab/package": "*",

0 commit comments

Comments
 (0)