Skip to content

Commit

Permalink
chore: increment versions + fix workflow [skip_publish, skip_storybook]
Browse files Browse the repository at this point in the history
  • Loading branch information
zaaakher committed Aug 26, 2024
1 parent 5373f5d commit 92789b3
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 8 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/publish-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
storybook:
needs: check_changes
name: "Deploy Storybook"
if: ${{!contains(github.event.head_commit.message, 'skip_storybook')}} && needs.check_changes.outputs.storybook_changed == 'true'
if: ${{ !contains(github.event.head_commit.message, 'skip_storybook') && needs.check_changes.outputs.storybook_changed == 'true' }}
runs-on: [self-hosted, linux, x64, A01]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
# =====================================================================================

docs:
if: ${{contains(github.event.head_commit.message, 'deploy_docs')}} && needs.check_changes.outputs.docs_changed == 'true'
if: ${{ contains(github.event.head_commit.message, 'deploy_docs') && needs.check_changes.outputs.docs_changed == 'true' }}
needs: check_changes
name: "Deploy Docs"
runs-on: [self-hosted, linux, x64, A01]
Expand Down Expand Up @@ -126,11 +126,12 @@ jobs:
- name: Display Deployment URL
run: echo "Hawa docs deployed successfully at https://${{ env.DOCS_DOMAIN }}"



# =====================================================================================
# ============================= HAWA NPM ==============================================
# =====================================================================================

publish-package:
if: ${{!contains(github.event.head_commit.message, 'skip_publish')}} && needs.check_changes.outputs.package_changed == 'true'
if: ${{ !contains(github.event.head_commit.message, 'skip_publish') }}
runs-on: [self-hosted, linux, x64, A01]
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 8 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# hawa-docs

## 0.0.118

### Patch Changes

- Minor fixes
- Updated dependencies
- @sikka/hawa@0.49.1

## 0.0.117

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hawa-docs",
"version": "0.0.117",
"version": "0.0.118",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
Expand Down
6 changes: 6 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @sikka/hawa

## 0.49.1

### Patch Changes

- Minor fixes

## 0.49.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sikka/hawa",
"version": "0.49.0",
"version": "0.49.1",
"description": "Modern UI Kit made with Tailwind",
"author": {
"name": "Sikka Software",
Expand Down
8 changes: 8 additions & 0 deletions packages/storybook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# hawa-storybook

## 0.26.140

### Patch Changes

- Minor fixes
- Updated dependencies
- @sikka/hawa@0.49.1

## 0.26.139

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hawa-storybook",
"version": "0.26.139",
"version": "0.26.140",
"description": "Modern UI Kit made with Tailwind",
"author": {
"name": "Sikka Software",
Expand Down

0 comments on commit 92789b3

Please sign in to comment.