This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
ci: release workflow #18
Open
SergeyRoyt
wants to merge
28
commits into
master
Choose a base branch
from
workflows/release-workflow
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 24 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
2c747d3
release.yml - wip
SergeyRoyt 418f198
release.yml - wip
SergeyRoyt 1a0db19
Change changelog title in all 3 packages
SergeyRoyt 50b0e32
Merge branch 'master' into workflows/release-workflow
SergeyRoyt 08ad036
remove npx lerna
SergeyRoyt 6cce643
release.yml wip
SergeyRoyt 1b3467f
.gitignore - add lerna-debug.log
SergeyRoyt de80a51
add .npmrc - local test
SergeyRoyt 96051eb
release.yml - wip
SergeyRoyt 6537e2c
release.yml - wip
SergeyRoyt 0cd06ef
verdaccio - config.yaml
SergeyRoyt 11e94f4
.verdaccio-db.json
SergeyRoyt e60c254
verdaccio remove htpasswd
SergeyRoyt f11f4f4
update .npmrc
SergeyRoyt 660d099
update .npmrc
SergeyRoyt 777df93
update config.yaml
SergeyRoyt dc98971
config.yaml
SergeyRoyt 6d7578f
verdaccio auth
SergeyRoyt caa1ad2
verdaccio htpasswd
SergeyRoyt 3f3ee8b
delete .npmrc
SergeyRoyt bba9af4
disable auth verdaccio
SergeyRoyt 7ded9b1
verdaccio config.yaml
SergeyRoyt 3ed3589
remove verdaccio config
SergeyRoyt b5309c4
add verdaccio to .gitignore
SergeyRoyt 56e76bb
restrict workflow_dispatch to run only on master
SergeyRoyt acad5b7
release.yml - wip
SergeyRoyt d5a4f56
remove comment
SergeyRoyt b67f4f7
Merge branch 'master' into workflows/release-workflow
SergeyRoyt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
//localhost:4873/:_authToken="fooBar" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Changelog | ||
# Change Log | ||
|
||
## 2.73.1 (2023-12-17) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Changelog | ||
# Change Log | ||
|
||
## 0.16.1 (2023-12-05) | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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)