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
6 changes: 1 addition & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy Package Version
on:
push:
branches:
- master
- release

jobs:
deploy:
Expand Down Expand Up @@ -66,7 +66,3 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
36 changes: 36 additions & 0 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install deps
uses: bahmutov/npm-install@v1
- name: Build
run: yarn build
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"version": {
"message": "chore(release): version",
"allowBranch": [
"master",
"release",
"dev",
"feature/*"
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"devDependencies": {
"husky": "8.0.2",
"lerna": "6.0.3",
"nx": "15.0.12",
"nx": "15.0.13",
"@nrwl/nx-cloud": "latest"
},
"prettier": {
Expand Down
2 changes: 1 addition & 1 deletion packages/memoize/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"dts-cli": "1.6.0",
"expect-type": "0.15.0",
"fast-memoize": "2.5.2",
"jest-environment-jsdom": "29.3.0",
"jest-environment-jsdom": "29.3.1",
"lodash": "4.17.21",
"markdown-table": "3.0.2",
"mem": "9.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-lazy-named/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@techstack/tcm-cli": "0.2.62",
"@testing-library/react": "13.4.0",
"dts-cli": "1.6.0",
"jest-environment-jsdom": "29.3.0"
"jest-environment-jsdom": "29.3.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-textfit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"eslint": "8.27.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-react": "7.31.10",
"expect": "29.3.0",
"expect": "29.3.1",
"mocha": "10.1.0",
"rimraf": "3.0.2",
"webpack": "5.74.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/tcm-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"execa": "6.1.0",
"figlet": "1.5.2",
"fs-extra": "10.1.0",
"jest": "29.3.0",
"jest-environment-jsdom": "29.3.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"jest-watch-typeahead": "2.2.0",
"jpjs": "1.2.1",
"lodash.merge": "4.6.2",
Expand Down
Loading