mirror of
https://github.com/steedos/steedos-platform
synced 2024-11-22 17:06:42 +00:00
version 2.5->2.6
This commit is contained in:
parent
b182d723a9
commit
ddef9fbc34
4
.github/workflows/docker-community.yml
vendored
4
.github/workflows/docker-community.yml
vendored
@ -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
|
||||
|
||||
|
4
.github/workflows/docker-enterprise.yml
vendored
4
.github/workflows/docker-enterprise.yml
vendored
@ -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
|
||||
|
||||
|
10
.github/workflows/npm-release.yml
vendored
10
.github/workflows/npm-release.yml
vendored
@ -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 }}
|
||||
|
||||
|
6
.github/workflows/npm-sync.yml
vendored
6
.github/workflows/npm-sync.yml
vendored
@ -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
|
||||
|
||||
|
@ -5,6 +5,6 @@
|
||||
"start": "steedos start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@steedos/service-community": "~2.5"
|
||||
"@steedos/service-community": "~2.6"
|
||||
}
|
||||
}
|
@ -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:
|
||||
|
@ -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": {
|
||||
|
@ -8,5 +8,5 @@
|
||||
],
|
||||
"useWorkspaces": true,
|
||||
"npmClient": "yarn",
|
||||
"version": "2.5.20"
|
||||
"version": "2.6.2-beta.1"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user