2022-10-28 03:41:48 +00:00
|
|
|
name: Release
|
2022-10-24 08:56:27 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish-npm:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node:16
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
-
|
|
|
|
name: yarn install and build
|
|
|
|
run: |
|
|
|
|
yarn config set registry https://registry.npmjs.org/
|
|
|
|
yarn install
|
|
|
|
yarn build
|
|
|
|
-
|
|
|
|
name: publish npmjs.org
|
|
|
|
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
|
|
|
|
yarn release:force --no-verify-access --no-git-reset --registry https://registry.npmjs.org/
|
2022-10-24 08:56:27 +00:00
|
|
|
push-docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: publish-npm
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
-
|
|
|
|
name: Docker meta
|
|
|
|
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}}
|
|
|
|
-
|
|
|
|
name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
context: ./docker/nocobase
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: nocobase/nocobase:latest,${{ steps.meta.outputs.tags }}
|