Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master' into feat/c…
Browse files Browse the repository at this point in the history
…alendar-range_width

# Conflicts:
#	packages/calendar-range/package.json
  • Loading branch information
fulcanellee committed Dec 10, 2024
2 parents 4d429a9 + 8a40d41 commit e7fd77c
Show file tree
Hide file tree
Showing 469 changed files with 9,244 additions and 4,110 deletions.
29 changes: 29 additions & 0 deletions .changeset/three-clocks-try.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
'@alfalab/core-components-action-button': patch
'@alfalab/core-components-alert': patch
'@alfalab/core-components-amount': patch
'@alfalab/core-components-amount-input': patch
'@alfalab/core-components-attach': patch
'@alfalab/core-components-backdrop': patch
'@alfalab/core-components-badge': patch
'@alfalab/core-components-bank-card': patch
'@alfalab/core-components-base-modal': patch
'@alfalab/core-components-bottom-sheet': patch
'@alfalab/core-components-calendar-input': patch
'@alfalab/core-components-calendar-range': patch
'@alfalab/core-components-calendar-with-skeleton': patch
'@alfalab/core-components-custom-picker-button': patch
'@alfalab/core-components-gallery': patch
'@alfalab/core-components-input': patch
'@alfalab/core-components-input-autocomplete': patch
'@alfalab/core-components-international-phone-input': patch
'@alfalab/core-components-intl-phone-input': patch
'@alfalab/core-components-markdown': patch
'@alfalab/core-components-picker-button': patch
'@alfalab/core-components-plate': patch
'@alfalab/core-components-select': patch
'@alfalab/core-components-select-with-tags': patch
'@alfalab/core-components-universal-date-input': patch
---

Добавлено sideEffects: false
46 changes: 46 additions & 0 deletions .github/workflows/codemod-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Publish codemod

on:
workflow_dispatch:
inputs:
version:
description: 'Введите версию x.x.x'
required: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check permissions
if: ${{ contains(fromJSON('["reme3d2y","hextion","SiebenSieben","fulcanellee"]'), github.actor) == false }}
uses: actions/github-script@v6
with:
script: |
core.setFailed("you don't have permission to run this workflow!");
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Set version
if: success()
run: |
cd ./packages/codemod
git config user.name core-ds-bot
git config user.email [email protected]
yarn --new-version version ${{ github.event.inputs.version }}
git push
- name: Publish
if: success()
run: |
cd ./packages/codemod
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
54 changes: 54 additions & 0 deletions .github/workflows/core-config-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Publish core-config

on:
workflow_dispatch:
inputs:
version:
description: 'Введите версию x.x.x'
required: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check permissions
if: ${{ contains(fromJSON('["reme3d2y","hextion","SiebenSieben","fulcanellee"]'), github.actor) == false }}
uses: actions/github-script@v6
with:
script: |
core.setFailed("you don't have permission to run this workflow!");
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: yarn --pure-lockfile

- name: Build app
run: |
cd ./external/core-config
yarn build
- name: Set version
if: success()
run: |
cd ./external/core-config
git config user.name core-ds-bot
git config user.email [email protected]
yarn --new-version version ${{ github.event.inputs.version }}
git push
- name: Publish
if: success()
run: |
cd ./external/core-config
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit e7fd77c

Please sign in to comment.