version 2.5->2.6

This commit is contained in:
庄建国 2023-12-06 08:49:37 +00:00
parent b182d723a9
commit ddef9fbc34
8 changed files with 17 additions and 17 deletions

View File

@ -68,11 +68,11 @@ jobs:
with:
registry: 252208178451.dkr.ecr.cn-northwest-1.amazonaws.com.cn
- name: Replace Version ~2.5 to Tag
- name: Replace Version ~2.6 to Tag
uses: jacobtomlinson/gha-find-replace@v2
with:
include: deploy/docker/app/platform/package.json
find: "~2.5"
find: "~2.6"
replace: ${{env.STEEDOS_VERSION}}
regex: false

View File

@ -67,11 +67,11 @@ jobs:
with:
registry: 252208178451.dkr.ecr.cn-northwest-1.amazonaws.com.cn
- name: Replace Version ~2.5 to Tag
- name: Replace Version ~2.6 to Tag
uses: jacobtomlinson/gha-find-replace@v2
with:
include: deploy/enterprise/app/platform/package.json
find: "~2.5"
find: "~2.6"
replace: ${{env.STEEDOS_VERSION}}
regex: false

View File

@ -163,7 +163,7 @@ jobs:
git config user.name github-actions
git config user.email github-actions@github.com
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
yarn lerna publish ${{ steps.branch-name.outputs.tag }} --no-git-tag-version --no-git-reset --force-publish --exact --yes
yarn lerna publish ${{ steps.branch-name.outputs.tag }} --no-git-tag-version --no-git-reset --force-publish --exact --yes --dist-tag 2.5
git add .
git commit -m "action: release ${{ steps.branch-name.outputs.tag }}"
git push
@ -177,7 +177,7 @@ jobs:
git config user.name github-actions
git config user.email github-actions@github.com
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
yarn lerna publish ${{ steps.branch-name.outputs.tag }} --no-git-tag-version --no-git-reset --force-publish --exact --yes --dist-tag next
yarn lerna publish ${{ steps.branch-name.outputs.tag }} --no-git-tag-version --no-git-reset --force-publish --exact --yes
git add .
git commit -m "action: release ${{ steps.branch-name.outputs.tag }}"
git push
@ -200,12 +200,12 @@ jobs:
CI: false
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Merge 2.5 -> master
if: ${{ startsWith(steps.branch-name.outputs.tag, '2.5') }} # && steps.version.outputs.is_stable == 'true'}}
- name: Merge 2.6 -> master
if: ${{ startsWith(steps.branch-name.outputs.tag, '2.6') }} # && steps.version.outputs.is_stable == 'true'}}
uses: devmasx/merge-branch@master
with:
type: now
from_branch: 2.5
from_branch: 2.6
target_branch: master
github_token: ${{ github.token }}

View File

@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
steps:
# checkout branch 2.5
- name: Checkout branch 2.5
# checkout branch 2.6
- name: Checkout branch 2.6
uses: actions/checkout@v2
with:
ref: '2.5'
ref: '2.6'
- run: yarn --frozen-lockfile

View File

@ -5,6 +5,6 @@
"start": "steedos start"
},
"dependencies": {
"@steedos/service-community": "~2.5"
"@steedos/service-community": "~2.6"
}
}

View File

@ -3,7 +3,7 @@ version: "3.9"
services:
steedos:
image: steedos/steedos-community:2.5
image: steedos/steedos-community:2.6
ports:
- "80:80"
environment:

View File

@ -5,8 +5,8 @@
"start": "steedos start"
},
"dependencies": {
"@steedos/service-community": "~2.5",
"@steedos/service-enterprise": "^2.5.13",
"@steedos/service-community": "~2.6",
"@steedos/service-enterprise": "^2.5",
"@steedos-labs/analytics": "^0.0.10"
},
"resolutions": {

View File

@ -8,5 +8,5 @@
],
"useWorkspaces": true,
"npmClient": "yarn",
"version": "2.5.20"
"version": "2.6.2-beta.1"
}