2022-10-28 03:41:48 +00:00
|
|
|
name: Release
|
2022-10-24 08:56:27 +00:00
|
|
|
|
2024-02-08 03:35:59 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-10-24 08:56:27 +00:00
|
|
|
on:
|
2024-11-06 06:46:04 +00:00
|
|
|
workflow_dispatch:
|
2022-10-24 08:56:27 +00:00
|
|
|
push:
|
|
|
|
tags:
|
2024-11-06 06:11:48 +00:00
|
|
|
- 'v*'
|
2022-10-24 08:56:27 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish-npm:
|
|
|
|
runs-on: ubuntu-latest
|
2023-11-20 11:35:30 +00:00
|
|
|
container: node:18
|
2022-10-24 08:56:27 +00:00
|
|
|
steps:
|
2024-11-06 06:11:48 +00:00
|
|
|
- name: Get info
|
|
|
|
id: get-info
|
2024-11-06 09:01:12 +00:00
|
|
|
shell: bash
|
2024-11-06 06:11:48 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ github.ref_name }}" =~ "beta" ]]; then
|
2024-11-06 07:35:07 +00:00
|
|
|
echo "defaultTag=$(echo 'latest')" >> $GITHUB_OUTPUT
|
2024-11-06 06:11:48 +00:00
|
|
|
echo "proRepos=$(echo '${{ vars.PRO_PLUGIN_REPOS }}')" >> $GITHUB_OUTPUT
|
|
|
|
else
|
2024-11-06 07:35:07 +00:00
|
|
|
echo "defaultTag=$(echo 'next')" >> $GITHUB_OUTPUT
|
2024-11-06 06:11:48 +00:00
|
|
|
echo "proRepos=$(echo '${{ vars.NEXT_PRO_PLUGIN_REPOS }}')" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
2024-09-03 12:44:05 +00:00
|
|
|
- uses: actions/create-github-app-token@v1
|
2024-08-26 22:46:25 +00:00
|
|
|
id: app-token
|
2024-09-03 12:44:05 +00:00
|
|
|
with:
|
|
|
|
app-id: ${{ vars.NOCOBASE_APP_ID }}
|
|
|
|
private-key: ${{ secrets.NOCOBASE_APP_PRIVATE_KEY }}
|
2024-11-06 06:11:48 +00:00
|
|
|
repositories: nocobase,pro-plugins,${{ join(fromJSON(steps.get-info.outputs.proRepos), ',') }},${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ',') }}
|
2024-09-03 12:44:05 +00:00
|
|
|
skip-token-revoke: true
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Checkout
|
2022-10-24 08:56:27 +00:00
|
|
|
uses: actions/checkout@v3
|
2024-11-06 06:11:48 +00:00
|
|
|
with:
|
|
|
|
ref: ${{ github.ref_name }}
|
2024-07-10 15:52:59 +00:00
|
|
|
- name: Send curl request and parse response
|
|
|
|
env:
|
|
|
|
PKG_USERNAME: ${{ secrets.PKG_USERNAME }}
|
|
|
|
PKG_PASSWORD: ${{ secrets.PKG_PASSWORD }}
|
|
|
|
run: |
|
|
|
|
mkdir git-ci-cache
|
|
|
|
apt-get update && apt-get install -y jq
|
|
|
|
response1=$(curl -s 'https://pkg.nocobase.com/-/verdaccio/sec/login' \
|
|
|
|
-H 'content-type: application/json' \
|
|
|
|
--data-raw '{"username":"'$PKG_USERNAME'","password":"'$PKG_PASSWORD'"}')
|
|
|
|
token1=$(echo $response1 | jq -r '.token')
|
|
|
|
response2=$(curl -s 'https://pkg-src.nocobase.com/-/verdaccio/sec/login' \
|
|
|
|
-H 'content-type: application/json' \
|
|
|
|
--data-raw '{"username":"'$PKG_USERNAME'","password":"'$PKG_PASSWORD'"}')
|
|
|
|
token2=$(echo $response2 | jq -r '.token')
|
|
|
|
echo "PKG_NOCOBASE_TOKEN=$token1" >> $GITHUB_ENV
|
|
|
|
echo "PKG_SRC_NOCOBASE_TOKEN=$token2" >> $GITHUB_ENV
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: yarn install and build
|
2022-10-24 08:56:27 +00:00
|
|
|
run: |
|
|
|
|
yarn config set registry https://registry.npmjs.org/
|
|
|
|
yarn install
|
|
|
|
yarn build
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: publish npmjs.org
|
2024-05-09 12:33:48 +00:00
|
|
|
continue-on-error: true
|
2022-10-24 08:56:27 +00:00
|
|
|
run: |
|
2023-01-05 15:22:18 +00:00
|
|
|
git config --global user.email "test@mail.com"
|
|
|
|
git config --global user.name "test"
|
|
|
|
git config --global --add safe.directory /__w/nocobase/nocobase
|
2022-10-31 15:55:11 +00:00
|
|
|
echo "# test" >> Release.md
|
2022-10-31 16:00:15 +00:00
|
|
|
git add .
|
2022-10-26 04:27:19 +00:00
|
|
|
git commit -m "chore(versions): test publish packages xxx"
|
2023-01-05 15:22:18 +00:00
|
|
|
npm config set access public
|
|
|
|
npm config set registry https://registry.npmjs.org/
|
|
|
|
npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
|
|
|
|
yarn config set access public
|
|
|
|
yarn config set registry https://registry.npmjs.org/
|
|
|
|
yarn config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
|
|
|
|
npm whoami
|
2024-11-06 07:35:07 +00:00
|
|
|
yarn release:force --no-verify-access --no-git-reset --registry https://registry.npmjs.org/ --dist-tag=${{ steps.get-info.outputs.defaultTag }}
|
2024-05-09 09:27:11 +00:00
|
|
|
- name: Checkout pro-plugins
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
repository: nocobase/pro-plugins
|
|
|
|
path: packages/pro-plugins
|
2024-11-06 06:11:48 +00:00
|
|
|
ref: ${{ github.ref_name }}
|
2024-08-26 15:40:48 +00:00
|
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
|
|
- name: Clone pro repos
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-11-06 06:11:48 +00:00
|
|
|
for repo in ${{ join(fromJSON(steps.get-info.outputs.proRepos), ' ') }} ${{ join(fromJSON(vars.CUSTOM_PRO_PLUGIN_REPOS), ' ') }}
|
2024-08-26 15:40:48 +00:00
|
|
|
do
|
2024-11-06 06:11:48 +00:00
|
|
|
git clone -b ${{ github.ref_name }} https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/nocobase/$repo.git packages/pro-plugins/@nocobase/$repo
|
2024-08-26 15:40:48 +00:00
|
|
|
done
|
2024-05-09 09:27:11 +00:00
|
|
|
- name: Build Pro plugins
|
|
|
|
run: |
|
|
|
|
yarn config set registry https://registry.npmjs.org/
|
|
|
|
yarn install
|
2024-05-09 13:35:58 +00:00
|
|
|
yarn build packages/pro-plugins
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: publish pkg.nocobase.com
|
|
|
|
run: |
|
2024-05-09 12:33:48 +00:00
|
|
|
git reset --hard
|
2024-07-10 15:52:59 +00:00
|
|
|
npm config set //pkg.nocobase.com/:_authToken=${{ env.PKG_NOCOBASE_TOKEN }}
|
2024-11-06 07:35:07 +00:00
|
|
|
yarn release:force --no-verify-access --no-git-reset --registry https://pkg.nocobase.com --dist-tag=${{ steps.get-info.outputs.defaultTag }}
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: publish pkg-src.nocobase.com
|
|
|
|
run: |
|
2024-05-09 12:33:48 +00:00
|
|
|
git reset --hard
|
2024-05-09 07:42:08 +00:00
|
|
|
bash generate-npmignore.sh ignore-src
|
2024-07-10 15:52:59 +00:00
|
|
|
npm config set //pkg-src.nocobase.com/:_authToken=${{ env.PKG_SRC_NOCOBASE_TOKEN }}
|
2024-11-06 07:35:07 +00:00
|
|
|
yarn release:force --no-verify-access --no-git-reset --registry https://pkg-src.nocobase.com --dist-tag=${{ steps.get-info.outputs.defaultTag }}
|
2022-10-24 08:56:27 +00:00
|
|
|
push-docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: publish-npm
|
|
|
|
steps:
|
2024-11-06 06:46:04 +00:00
|
|
|
- name: Get info
|
|
|
|
id: get-info
|
2024-11-06 09:01:12 +00:00
|
|
|
shell: bash
|
2024-11-06 06:46:04 +00:00
|
|
|
run: |
|
|
|
|
if [[ "${{ github.ref_name }}" =~ "beta" ]]; then
|
|
|
|
echo "defaultTag=$(echo 'latest')" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
echo "defaultTag=$(echo 'next')" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Checkout
|
2022-10-24 08:56:27 +00:00
|
|
|
uses: actions/checkout@v3
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Set up QEMU
|
2022-10-24 08:56:27 +00:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Set up Docker Buildx
|
2022-10-24 08:56:27 +00:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Docker meta
|
2022-10-24 08:56:27 +00:00
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v4
|
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
nocobase/nocobase
|
|
|
|
tags: |
|
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=pr
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Login to Docker Hub
|
2022-10-24 08:56:27 +00:00
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2024-06-19 02:29:20 +00:00
|
|
|
- name: Login to Aliyun Container Registry (Public)
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ${{ secrets.ALI_DOCKER_PUBLIC_REGISTRY }}
|
|
|
|
username: ${{ secrets.ALI_DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.ALI_DOCKER_PASSWORD }}
|
2024-05-09 07:42:08 +00:00
|
|
|
- name: Build and push
|
2022-10-24 08:56:27 +00:00
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
context: ./docker/nocobase
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
2024-11-06 06:11:48 +00:00
|
|
|
tags: nocobase/nocobase:${{ steps.get-info.outputs.defaultTag }},${{ steps.meta.outputs.tags }},${{ secrets.ALI_DOCKER_PUBLIC_REGISTRY }}/nocobase/nocobase:${{ steps.get-info.outputs.defaultTag }},${{ secrets.ALI_DOCKER_PUBLIC_REGISTRY }}/${{ steps.meta.outputs.tags }}
|