fix: versions #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
release: | |
types: ["created"] | |
push: | |
branches: ["main"] | |
jobs: | |
CICD: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['16.x'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: build | |
run: | | |
yarn | |
yarn build | |
- name: Deploy to server | |
env: | |
KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
run: | | |
mkdir -p ~/.ssh/ && echo "$KEY" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa | |
ssh-keyscan github.com >> ~/.ssh/known_hosts | |
scp -o StrictHostKeyChecking=no -r ./build/* ${{ secrets.DEPLOY_HOST }} | |
Release-DongTai-Infra-Service: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['16.x'] | |
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: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DONGTAI_DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DONGTAI_DOCKERHUB_TOKEN }} | |
- name: Login to Aliyun Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ secrets.ALIYUN_REGISTRY }} | |
username: ${{ secrets.ALIYUN_DOCKERHUB_USER }} | |
password: ${{ secrets.ALIYUN_DOCKERHUB_PASSWORD }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: build | |
run: | | |
sed -i "s#custom.css#custom1.css#g" docusaurus.config.js | |
sed -i "s#baseUrl: '/'#baseUrl: '/doc/'#g" docusaurus.config.js | |
yarn | |
yarn build | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
dongtai/dongtai-doc-v5:latest | |
dongtai/dongtai-doc-v5:0.0.${{github.run_number}} | |
registry.cn-hongkong.aliyuncs.com/secnium/dongtai-doc:latest | |
registry.cn-hongkong.aliyuncs.com/secnium/dongtai-doc:max-develop-latest | |
registry.cn-hongkong.aliyuncs.com/secnium/dongtai-doc:max-beta-latest | |
registry.cn-hongkong.aliyuncs.com/secnium/dongtai-doc:max-main-latest |