Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,12 @@ jobs:
cache: "pnpm"
registry-url: "https://registry.npmjs.org"

- name: Setup Git identity
- name: Setup Git identity and sync branch
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git fetch origin ${{ github.ref_name }}
git checkout -B ${{ github.ref_name }} origin/${{ github.ref_name }}

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down Expand Up @@ -173,10 +175,12 @@ jobs:
fi
echo "✅ Release confirmed for ${{ github.event.inputs.release_type }} on branch ${{ github.ref_name }}"

- name: Setup Git identity
- name: Setup Git identity and sync branch
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git fetch origin ${{ github.ref_name }}
git checkout -B ${{ github.ref_name }} origin/${{ github.ref_name }}

- name: Build packages
run: pnpm run build:production
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ruma-org/source",
"version": "1.0.0-alpha.1",
"version": "0.0.0",
"private": true,
"description": "A modern, production-ready React UI component library built with TypeScript, Tailwind CSS, and Nx.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ruma-org/cli",
"version": "1.0.0-alpha.1",
"version": "0.0.0",
"description": "CLI for adding ruma-ui components to your React project",
"bin": {
"ruma-ui": "dist/index.js"
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ruma-org/ui",
"version": "1.0.0-alpha.1",
"version": "0.0.0",
"type": "module",
"description": "A modern, production-ready React UI component library built with TypeScript, Tailwind CSS, and Nx.",
"license": "MIT",
Expand Down
Loading