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
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
git config user.name "github-actions"
git config user.email "[email protected]"

- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install and build dependencies
run: |
yarn install --frozen-lockfile
yarn build

- name: Extract version from package.json
id: extract_version
Expand All @@ -43,9 +45,6 @@ jobs:
git tag -a "${{ env.VERSION }}" -m "Release ${{ env.VERSION }}"
git push origin "${{ env.VERSION }}"

- name: Build the package
run: yarn build

- name: Set up NPM auth
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![license](https://img.shields.io/npm/l/style-forge.base)
![npm](https://img.shields.io/npm/dm/style-forge.base)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b1937fcb74d44c3db8d5f1bfcbc38862)](https://app.codacy.com/gh/Style-Forge/base/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
![build](https://github.com/style-forge/base/actions/workflows/publish.yml/badge.svg)
![build](https://github.com/style-forge/base/actions/workflows/release.yml/badge.svg)

`Style-Forge.Base` provides the foundational CSS variables and base styles for the Style Forge framework. It includes essential typography, color schemes, and utility classes, ensuring a consistent and customizable design system for your web projects.

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": "style-forge.base",
"version": "2025.1.4",
"version": "2025.1.4-rc.1",
"description": "Style-Forge.Base: foundational CSS variables, base styles, typography, colors, utilities for consistent design.",
"type": "module",
"main": "base.css",
Expand Down
Loading