Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

ci: release workflow #18

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2c747d3
release.yml - wip
SergeyRoyt Dec 27, 2023
418f198
release.yml - wip
SergeyRoyt Dec 27, 2023
1a0db19
Change changelog title in all 3 packages
SergeyRoyt Dec 28, 2023
50b0e32
Merge branch 'master' into workflows/release-workflow
SergeyRoyt Dec 28, 2023
08ad036
remove npx lerna
SergeyRoyt Dec 28, 2023
6cce643
release.yml wip
SergeyRoyt Dec 28, 2023
1b3467f
.gitignore - add lerna-debug.log
SergeyRoyt Dec 28, 2023
de80a51
add .npmrc - local test
SergeyRoyt Dec 28, 2023
96051eb
release.yml - wip
SergeyRoyt Dec 28, 2023
6537e2c
release.yml - wip
SergeyRoyt Dec 28, 2023
0cd06ef
verdaccio - config.yaml
SergeyRoyt Dec 28, 2023
11e94f4
.verdaccio-db.json
SergeyRoyt Dec 28, 2023
e60c254
verdaccio remove htpasswd
SergeyRoyt Dec 28, 2023
f11f4f4
update .npmrc
SergeyRoyt Dec 28, 2023
660d099
update .npmrc
SergeyRoyt Dec 28, 2023
777df93
update config.yaml
SergeyRoyt Dec 28, 2023
dc98971
config.yaml
SergeyRoyt Dec 28, 2023
6d7578f
verdaccio auth
SergeyRoyt Dec 28, 2023
caa1ad2
verdaccio htpasswd
SergeyRoyt Dec 28, 2023
3f3ee8b
delete .npmrc
SergeyRoyt Dec 28, 2023
bba9af4
disable auth verdaccio
SergeyRoyt Dec 28, 2023
7ded9b1
verdaccio config.yaml
SergeyRoyt Dec 28, 2023
3ed3589
remove verdaccio config
SergeyRoyt Dec 28, 2023
b5309c4
add verdaccio to .gitignore
SergeyRoyt Dec 28, 2023
56e76bb
restrict workflow_dispatch to run only on master
SergeyRoyt Dec 30, 2023
acad5b7
release.yml - wip
SergeyRoyt Dec 30, 2023
d5a4f56
remove comment
SergeyRoyt Jan 2, 2024
b67f4f7
Merge branch 'master' into workflows/release-workflow
SergeyRoyt Jan 3, 2024
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
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on: workflow_dispatch

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
registry-url: https://registry.npmjs.org/
- name: Install and build
run: |
yarn install --frozen-lockfile
yarn build
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
- name: Set up git credentials
run: |
git config --global user.name 'ci'
git config --global user.email 'deploy@monday.com'
- name: "Version and publish"
run: |
lerna version --conventional-commits --yes
# lerna publish from-git --yes #--registry http://localhost:4873
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ node_modules
.vscode
.idea
npm-debug.log
lerna-debug.log
build-storybook.log
./build-storybook.log
/storybook-static
dist
/build
coverage
.scannerwork
verdaccio
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//localhost:4873/:_authToken="fooBar"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO delete - needed for verdaccio to work (locally)

2 changes: 1 addition & 1 deletion packages/monday-ui-react-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog
# Change Log

## 2.73.1 (2023-12-17)

Expand Down
4 changes: 3 additions & 1 deletion packages/monday-ui-style/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Change Log

0.1.205 / 2023-12-11
====================
* fix(icons): replace DoubleCheck icon ([#263](https://github.com/mondaycom/monday-ui-style/issues/263))
Expand Down Expand Up @@ -302,4 +304,4 @@
* fix classes creation
* fix tests
* wip
* wip
* wip
2 changes: 1 addition & 1 deletion packages/vibe-storybook-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog
# Change Log

## 0.16.1 (2023-12-05)

Expand Down